Below is a few paragraphs about RISC-V, but you can learn more at riscv.org:
"The renewed need in the post-PC
era for simpler ISAs led to the RISC-V.
(This is pronounced “RISC five” since
it the fifth RISC architecture from UC
Berkeley.) Keeping with its heritage,
the RISC-V is a minimalist ISA; in fact,
the base ISA is remarkably similar to
its great-great-grandparent RISC-I.
One indication of complexity is the
size of the documentation. The ISA
manual for x86-32 is 2,198 pages or
2,186,259 words. The RISC-V equivalents
are 236 pages or 76,702 words.
If someone were to read manuals as
an (incredibly boring) full-time job—
eight hours a day for five days a week—
it would take a month to read the x86-
32 manual but less than a day to read
the RISC-V manual.
Because it’s new, the RISC-V avoids
the mistakes of past ISAs.
For example, it’s modular: a small base ISA runs a full
software stack (OS, libraries, debuggers,
and compilers). The base is frozen and
will never change, giving programmers
a stable target. The modularity comes
from optional standard extensions:
multiply and divide, floating-point
arithmetic, atomic operations, compact
code, and vector instructions.
To achieve the software-desirable
goal of a single ISA that works from
the smallest to the largest computers,
it needs to lead to efficient designs for
both edge devices and the cloud. To
empower large-scale computers, the
RISC-V offers 64-bit as well as 32-bit
address versions. Minimalism and
modularity enable small and lowenergy
implementations of the RISC-V,
which helps embedded applications.
While some argue that ISA complexity
doesn’t matter for high-end processors,
it does matter for low-cost
applications, which the lack of success
of the 80x86 illustrates. A universal
ISA must work well everywhere. To
support domain-specific architectures
(DSAs), such as Google’s tensor
processing unit (TPU), the RISC-V
reserves opcode space to allow tight
coupling of custom accelerators.
However, the RISC-V’s most unconventional
feature is that it’s open. Its
future is free from the fate or decisions
of a single corporation, which have
doomed numerous ISAs in the past.8
Instead, it belongs to a nonprofit foundation
with more than 75 corporate
members (riscv.org). Its goal is to maintain
the stability of the RISC-V; evolve
the ISA slowly and carefully, keeping
technological changes in mind; and to
try to make it as popular as software
open source projects like Linux. This
openness enables any organization to
develop and share implementations of
the RISC-V. Competition, a free market,
and open implementations might
lower costs and increase innovation,
similar to the benefits of open source
software. Open designs also reduce
the odds of unwanted malicious secrets
being hidden in a processor."