Comparison of instruction set architectures

Last updated

An instruction set architecture (ISA) is an abstract model of a computer, also referred to as computer architecture. A realization of an ISA is called an implementation. An ISA permits multiple implementations that may vary in performance, physical size, and monetary cost (among other things); because the ISA serves as the interface between software and hardware. Software that has been written for an ISA can run on different implementations of the same ISA. This has enabled binary compatibility between different generations of computers to be easily achieved, and the development of computer families. Both of these developments have helped to lower the cost of computers and to increase their applicability. For these reasons, the ISA is one of the most important abstractions in computing today.

Contents

An ISA defines everything a machine language programmer needs to know in order to program a computer. What an ISA defines differs between ISAs; in general, ISAs define the supported data types, what state there is (such as the main memory and registers) and their semantics (such as the memory consistency and addressing modes), the instruction set (the set of machine instructions that comprises a computer's machine language), and the input/output model.

Data representation

In the early decades of computing, there were computers that used binary, decimal [1] and even ternary. [2] [3] Contemporary computers are almost exclusively binary.

Characters are encoded as strings of bits or digits, using a wide variety of character sets; even within a single manufacturer there were character set differences.

Integers are encoded with a variety of representations, including Sign_magnitude, Ones' complement, Two's complement, Offset binary, Nines' complement and Ten's complement.

Similarly, floating point numbers are encoded with a variety of representations for the sign, exponent and mantissa. In contemporary machines IBM hexadecimal floating-point and IEEE 754 floating point have largely supplanted older formats.

Addresses are typically unsigned integers generated from a combination of fields in an instruction, data from registers and data from storage; the details vary depending on the architecture.

Bits

Computer architectures are often described as n-bit architectures. In the first 34 of the 20th century, n is often 12, 18, 24, 30, 36, 48 or 60. In the last 13 of the 20th century, n is often 8, 16, or 32, and in the 21st century, n is often 16, 32 or 64, but other sizes have been used (including 6, 39, 128). This is actually a simplification as computer architecture often has a few more or less "natural" data sizes in the instruction set, but the hardware implementation of these may be very different. Many instruction set architectures have instructions that, on some implementations of that instruction set architecture, operate on half and/or twice the size of the processor's major internal datapaths. Examples of this are the Z80, MC68000, and the IBM System/360. On these types of implementations, a twice as wide operation typically also takes around twice as many clock cycles (which is not the case on high performance implementations). On the 68000, for instance, this means 8 instead of 4 clock ticks, and this particular chip may be described as a 32-bit architecture with a 16-bit implementation. The IBM System/360 instruction set architecture is 32-bit, but several models of the System/360 series, such as the IBM System/360 Model 30, have smaller internal data paths, while others, such as the 360/195, have larger internal data paths. The external databus width is not used to determine the width of the architecture; the NS32008, NS32016 and NS32032 were basically the same 32-bit chip with different external data buses; the NS32764 had a 64-bit bus, and used 32-bit register. Early 32-bit microprocessors often had a 24-bit address, as did the System/360 processors.

Digits

In the first 34 of the 20th century, word oriented decimal computers typically had 10 digit [4] [5] [6] words with a separate sign, using all ten digits in integers and using two digits for exponents [7] [5] in floating point numbers.

Endianness

An architecture may use "big" or "little" endianness, or both, or be configurable to use either. Little-endian processors order bytes in memory with the least significant byte of a multi-byte value in the lowest-numbered memory location. Big-endian architectures instead arrange bytes with the most significant byte at the lowest-numbered address. The x86 architecture as well as several 8-bit architectures are little-endian. Most RISC architectures (SPARC, Power, PowerPC, MIPS) were originally big-endian (ARM was little-endian), but many (including ARM) are now configurable as either.

Endianness only applies to processors that allow individual addressing of units of data (such as bytes) that are smaller than some of the data formats.

Instruction formats

Opcodes

In some architectures, an instruction has a single opcode. In others, some instructions have an opcode and one or more modifiers. E.g., on the IBM System/370, byte 0 is the opcode but when byte 0 is a B216 then byte 1 selects a specific instruction, e.g., B20516 is store clock (STCK).

Operands

Addressing modes

Architectures typically allow instructions to include some combination of operand addressing modes

Direct
The instruction specifies a complete (virtual) address
Immediate
The instruction specifies a value rather than an address
Indexed
The instruction specifies a register to use as an index. In some architecture the index is scaled by the operand length.
Indirect
The instruction specifies the location of a word that describes the operand, possibly involving multiple levels of indexing and indirection.
Truncated
Base-displacement
The instruction specifies a displacement from an address in a register
autoincrement/aurodecrement
A register used for indexing is incremented or decremented by 1, an operand size or an explicit delta

Number of operands

The number of operands is one of the factors that may give an indication about the performance of the instruction set. A three-operand architecture (2-in, 1-out) will allow

A := B + C

to be computed in one instruction

ADD B, C, A

A two-operand architecture (1-in, 1-in-and-out) will allow

A := A + B

to be computed in one instruction

ADD B, A

but requires that

A := B + C

be done in two instructions

MOVE B, A ADD C, A

Encoding length

As can be seen in the table below some instructions sets keep to a very simple fixed encoding length, and other have variable-length. Usually it is RISC architectures that have fixed encoding length and CISC architectures that have variable length, but not always.

Instruction sets

The table below compares basic information about instruction set architectures.

Notes:

Archi-
tecture
BitsVersionIntro-
duced
Max #
operands
TypeDesign Registers
(excluding FP/vector)
Instruction encoding Branch evaluation Endian-
ness
ExtensionsOpenRoyalty
free
6502 819751 Register–Memory CISC 3Variable (8- to 24-bit)Condition registerLittle
6800 819741Register–MemoryCISC3Variable (8- to 24-bit)Condition registerBig
6809 819781Register–MemoryCISC5Variable (8- to 32-bit)Condition registerBig
680x0 3219792Register–MemoryCISC8 data and 8 addressVariableCondition registerBig
8080 819742Register–MemoryCISC7Variable (8 to 24 bits)Condition registerLittle
8051 32 (8→32)1977?1 Register–Register CISC
  • 32 in 4-bit
  • 16 in 8-bit
  • 8 in 16-bit
  • 4 in 32-bit
Variable (8 to 24 bits)Compare and branchLittle
x86 16, 32, 64
(16→32→64)
19782 (integer)
3 (AVX) [lower-alpha 1]
4 (FMA4 and VPBLENDVPx) [8]
Register–MemoryCISC
  • 8 (+ 4 or 6 segment reg.) (16/32-bit)
  • 16 (+ 2 segment reg. gs/cs) (64-bit)
  • 32 with AVX-512
Variable(8086 ~ 80386: variable between 1 and 6 bytes /w MMU + intel SDK, 80486: 2 to 5 bytes with prefix, pentium and onward: 2 to 4 bytes with prefix, x64: 4 bytes prefix, third party x86 emulation: 1 to 15 bytes w/o prefix & MMU . SSE/MMX: 4 bytes /w prefix AVX: 8 Bytes /w prefix)Condition codeLittle x87, IA-32, MMX, 3DNow!, SSE,
SSE2, PAE, x86-64, SSE3, SSSE3, SSE4,
BMI, AVX, AES, FMA, XOP, F16C
NoNo
Alpha 6419923Register–Register RISC 32 (including "zero")Fixed (32-bit)Condition registerBiMVI, BWX, FIX, CIXNo
ARC 16/32/64 (32→64)ARCv3 [9] 19963Register–RegisterRISC16 or 32 including SP
user can increase to 60
Variable (16- or 32-bit)Compare and branchBiAPEX User-defined instructions
ARM/A32 32ARMv1–v919833Register–RegisterRISC
  • 15
Fixed (32-bit)Condition codeBiNEON, Jazelle, VFP,
TrustZone, LPAE
No
Thumb/T32 32ARMv4T-ARMv819943Register–RegisterRISC
  • 7 with 16-bit Thumb instructions
  • 15 with 32-bit Thumb-2 instructions
Thumb: Fixed (16-bit), Thumb-2:
Variable (16- or 32-bit)
Condition codeBiNEON, Jazelle, VFP,
TrustZone, LPAE
No
Arm64/A64 64ARMv8-A [10] 2011 [11] 3Register–RegisterRISC32 (including the stack pointer/"zero" register)Fixed (32-bit), Variable (32-bit or 64-bit for FMA4 with 32-bit prefix [12] )Condition codeBiSVE and SVE2No
AVR 819972Register–RegisterRISC32
16 on "reduced architecture"
Variable (mostly 16-bit, four instructions are 32-bit)Condition register,
skip conditioned
on an I/O or
general purpose
register bit,
compare and skip
Little
AVR32 32Rev 220062–3RISC15Variable [13] Big Java virtual machine
Blackfin 3220003 [14] Register–RegisterRISC [15] 2 accumulators

8 data registers

8 pointer registers

4 index registers

4 buffer registers

Variable (16- or 32-bit)Condition codeLittle [16]
CDC Upper 3000 series 4819633Register–MemoryCISC48-bit A reg., 48-bit Q reg., 6 15-bit B registers, miscellaneousVariable (24- or 48-bit)Multiple types of jump and skipBig
CDC 6000
Central Processor (CP)
6019643Register–Registern/a [lower-alpha 2] 24 (8 18-bit address reg.,
8 18-bit index reg.,
8 60-bit operand reg.)
Variable (15-, 30-, or 60-bit)Compare and branchn/a [lower-alpha 3] Compare/Move UnitNoNo
CDC 6000
Peripheral Processor (PP)
1219641 or 2Register–MemoryCISC1 18-bit A register, locations 1–63 serve as index registers for some instructionsVariable (12- or 24-bit)Test A register, test channeln/a [lower-alpha 4] additional Peripheral Processing UnitsNoNo
Crusoe
(native VLIW)
32 [17] 20001Register–Register VLIW [17] [18]
  • 1 in native push stack mode
  • 6 in x86 emulation +
    8 in x87/MMX mode +
    50 in rename status
  • 12 integer + 48 shadow +
    4 debug in native VLIW
  • mode [17] [18]
Variable (64- or 128-bit in native mode, 15 bytes in x86 emulation) [18] Condition code [17] Little
Elbrus 2000
(native VLIW)
64v620071Register–Register [17] VLIW8–6464Condition codeLittleJust-in-time dynamic translation: x87, IA-32, MMX, SSE,
SSE2, x86-64, SSE3, AVX
NoNo
DLX 32 ?19903 ?RISC32Fixed (32-bit) ?Big ?Yes ?
eSi-RISC 16/3220093Register–RegisterRISC8–72Variable (16- or 32-bit)Compare and branch
and condition register
BiUser-defined instructionsNoNo
iAPX 432 [19] 3219813 Stack machine CISC0Variable (6 to 321 bits)NoNo
Itanium
(IA-64)
642001Register–Register EPIC 128Fixed (128-bit bundles with 5-bit template tag and 3 instructions, each 41-bit long)Condition registerBi
(selectable)
Intel Virtualization TechnologyNoNo
LoongArch 32, 6420214Register–RegisterRISC32 (including "zero")Fixed (32-bit)LittleNoNo
M32R 3219973Register–RegisterRISC16Variable (16- or 32-bit)Condition registerBi
m88k 3219883Register–RegisterRISCFixed (32-bit)Big
Mico32 32 ?20063Register–RegisterRISC32 [20] Fixed (32-bit)Compare and branchBigUser-defined instructionsYes [21] Yes
MIPS 64 (32→64)6 [22] [23] 19811–3Register–RegisterRISC4–32 (including "zero")Fixed (32-bit)Condition registerBi MDMX, MIPS-3D NoNo [24] [25]
MMIX 64 ?19993Register–RegisterRISC256Fixed (32-bit)Condition registerBig ?YesYes
Nios II 32 ?20003Register–RegisterRISC32Fixed (32-bit)Condition registerLittleSoft processor that can be instantiated on an Altera FPGA deviceNoOn Altera/Intel FPGA only
NS320xx 3219825Memory–MemoryCISC8Variable Huffman coded, up to 23 bytes longCondition codeLittleBitBlt instructions
OpenRISC 32, 641.4 [26] 20003Register–RegisterRISC16 or 32FixedCondition codeBi ?YesYes
PA-RISC
(HP/PA)
64 (32→64)2.019863Register–RegisterRISC32Fixed (32-bit)Compare and branchBig → Bi MAX No
PDP-8 [27] 121966Register–MemoryCISC1 accumulator

1 multiplier quotient register

Fixed (12-bit)Condition register

Test and branch

EAE (Extended Arithmetic Element)
PDP-11 1619702Memory–MemoryCISC8 (includes program counter and stack pointer, though any register can act as stack pointer)Variable (16-, 32-, or 48-bit)Condition codeLittleExtended Instruction Set, Floating Instruction Set, Floating Point Processor, Commercial Instruction SetNoNo
POWER, PowerPC, Power ISA 32/64 (32→64)3.1 [28] 19903 (mostly). FMA, LD/ST-UpdateRegister–RegisterRISC32 GPR, 8 4-bit Condition Fields, Link Register, Counter RegisterFixed (32-bit), Variable (32- or 64-bit with the 32-bit prefix [28] )Condition code, Branch-Counter auto-decrementBi AltiVec, APU, VSX, Cell, Floating-point, Matrix Multiply AssistYesYes
RISC-V 32, 64, 12820191213 [29] 20103Register–RegisterRISC32 (including "zero")VariableCompare and branchLittle ?YesYes
RX 64/32/1620003Memory–MemoryCISC4 integer + 4 addressVariableCompare and branchLittleNo
S+core 16/322005RISCLittle
SPARC 64 (32→64)OSA2017 [30] 19853Register–RegisterRISC32 (including "zero")Fixed (32-bit)Condition codeBig → Bi VIS YesYes [31]
SuperH (SH)32 ?19942Register–Register
Register–Memory
RISC16Fixed (16- or 32-bit), VariableCondition code
(single bit)
Bi ?YesYes
System/360
System/370
z/Architecture
64 (32→64)19642 (most)
3 (FMA, distinct
operand facility)

4 (some vector inst.)
Register–Memory
Memory–Memory
Register–Register
CISC16 general
16 control (S/370 and later)
16 access (ESA/370 and later)
Variable (16-, 32-, or 48-bit)Condition code, compare and branch auto increment, Branch-Counter auto-decrementBigNoNo
TMS320 C6000 series3219833Register-RegisterVLIW32 on C67x
64 on C67x+
Fixed (256-bit bundles with 8 instructions, each 32-bit long)Condition registerBiNoNo
Transputer 32 (4→64)19871 Stack machine MISC 3 (as stack)Fixed (8-bit)Compare and branchLittle
VAX 3219776Memory–MemoryCISC16VariableCondition code, compare and branchLittleNo
Z80 819762Register–MemoryCISC17Variable (8 to 32 bits)Condition registerLittle
Archi-
tecture
BitsVersionIntro-
duced
Max #
operands
TypeDesign Registers
(excluding FP/vector)
Instruction encoding Branch evaluation Endian-
ness
ExtensionsOpenRoyalty
free

See also

Notes

  1. The LEA (all processors) and IMUL-immediate (80186 & later) instructions accept three operands; most other instructions of the base integer ISA accept no more than two operands.
  2. partly RISC: load/store architecture and simple addressing modes, partly CISC: three instruction lengths and no single instruction timing
  3. Since memory is an array of 60-bit words with no means to access sub-units, big endian vs. little endian makes no sense. The optional CMU unit uses big-endian semantics.
  4. Since memory is an array of 12-bit words with no means to access sub-units, big endian vs. little endian makes no sense.

Related Research Articles

<span class="mw-page-title-main">DEC Alpha</span> 64-bit RISC instruction set architecture

Alpha is a 64-bit reduced instruction set computer (RISC) instruction set architecture (ISA) developed by Digital Equipment Corporation (DEC). Alpha was designed to replace 32-bit VAX complex instruction set computers (CISC) and to be a highly competitive RISC processor for Unix workstations and similar markets.

MIPS is a family of reduced instruction set computer (RISC) instruction set architectures (ISA) developed by MIPS Computer Systems, now MIPS Technologies, based in the United States.

<span class="mw-page-title-main">Machine code</span> Set of instructions executed by a computer

In computer programming, machine code is computer code consisting of machine language instructions, which are used to control a computer's central processing unit (CPU). Although decimal computers were once common, the contemporary marketplace is dominated by binary computers; for those computers, machine code is "the binary representation of a computer program which is actually read and interpreted by the computer. A program in machine code consists of a sequence of machine instructions ."

MMIX is a 64-bit reduced instruction set computing (RISC) architecture designed by Donald Knuth, with significant contributions by John L. Hennessy and Richard L. Sites. Knuth has said that,

MMIX is a computer intended to illustrate machine-level aspects of programming. In my books The Art of Computer Programming, it replaces MIX, the 1960s-style machine that formerly played such a role… I strove to design MMIX so that its machine language would be simple, elegant, and easy to learn. At the same time I was careful to include all of the complexities needed to achieve high performance in practice, so that MMIX could in principle be built and even perhaps be competitive with some of the fastest general-purpose computers in the marketplace."

<span class="mw-page-title-main">Reduced instruction set computer</span> Processor executing one instruction in minimal clock cycles

In electronics and computer science, a reduced instruction set computer (RISC) is a computer architecture designed to simplify the individual instructions given to the computer to accomplish tasks. Compared to the instructions given to a complex instruction set computer (CISC), a RISC computer might require more instructions in order to accomplish a task because the individual instructions are written in simpler code. The goal is to offset the need to process more instructions by increasing the speed of each instruction, in particular by implementing an instruction pipeline, which may be simpler to achieve given simpler instructions.

x86 Family of instruction set architectures

x86 is a family of complex instruction set computer (CISC) instruction set architectures initially developed by Intel based on the Intel 8086 microprocessor and its 8088 variant. The 8086 was introduced in 1978 as a fully 16-bit extension of Intel's 8-bit 8080 microprocessor, with memory segmentation as a solution for addressing more memory than can be covered by a plain 16-bit address. The term "x86" came into being because the names of several successors to Intel's 8086 processor end in "86", including the 80186, 80286, 80386 and 80486 processors. Colloquially, their names were "186", "286", "386" and "486".

<span class="mw-page-title-main">SPARC</span> RISC instruction set architecture

SPARC is a reduced instruction set computer (RISC) instruction set architecture originally developed by Sun Microsystems. Its design was strongly influenced by the experimental Berkeley RISC system developed in the early 1980s. First developed in 1986 and released in 1987, SPARC was one of the most successful early commercial RISC systems, and its success led to the introduction of similar RISC designs from many vendors through the 1980s and 1990s.

<span class="mw-page-title-main">Endianness</span> Order of bytes in a computer word

In computing, endianness is the order in which bytes within a word of digital data are transmitted over a data communication medium or addressed in computer memory, counting only byte significance compared to earliness. Endianness is primarily expressed as big-endian (BE) or little-endian (LE), terms introduced by Danny Cohen into computer science for data ordering in an Internet Experiment Note published in 1980. The adjective endian has its origin in the writings of 18th century Anglo-Irish writer Jonathan Swift. In the 1726 novel Gulliver's Travels, he portrays the conflict between sects of Lilliputians divided into those breaking the shell of a boiled egg from the big end or from the little end. By analogy, a CPU may read a digital word big end first, or little end first.

In computer science, an instruction set architecture (ISA) is an abstract model that generally defines how software controls the CPU in a computer or a family of computers. A device or program that executes instructions described by that ISA, such as a central processing unit (CPU), is called an implementation of that ISA.

AltiVec is a single-precision floating point and integer SIMD instruction set designed and owned by Apple, IBM, and Freescale Semiconductor — the AIM alliance. It is implemented on versions of the PowerPC processor architecture, including Motorola's G4, IBM's G5 and POWER6 processors, and P.A. Semi's PWRficient PA6T. AltiVec is a trademark owned solely by Freescale, so the system is also referred to as Velocity Engine by Apple and VMX by IBM and P.A. Semi.

SuperH is a 32-bit reduced instruction set computing (RISC) instruction set architecture (ISA) developed by Hitachi and currently produced by Renesas. It is implemented by microcontrollers and microprocessors for embedded systems.

<span class="mw-page-title-main">64-bit computing</span> Computer architecture bit width

In computer architecture, 64-bit integers, memory addresses, or other data units are those that are 64 bits wide. Also, 64-bit central processing units (CPU) and arithmetic logic units (ALU) are those that are based on processor registers, address buses, or data buses of that size. A computer that uses such a processor is a 64-bit computer.

Addressing modes are an aspect of the instruction set architecture in most central processing unit (CPU) designs. The various addressing modes that are defined in a given instruction set architecture define how the machine language instructions in that architecture identify the operand(s) of each instruction. An addressing mode specifies how to calculate the effective memory address of an operand by using information held in registers and/or constants contained within a machine instruction or elsewhere.

In computer engineering, an orthogonal instruction set is an instruction set architecture where all instruction types can use all addressing modes. It is "orthogonal" in the sense that the instruction type and the addressing mode vary independently. An orthogonal instruction set does not impose a limitation that requires a certain instruction to use a specific register so there is little overlapping of instruction functionality.

<span class="mw-page-title-main">Clipper architecture</span> 32-bit RISC-like computing architecture

The Clipper architecture is a 32-bit RISC-like instruction set architecture designed by Fairchild Semiconductor. The architecture never enjoyed much market success, and the only computer manufacturers to create major product lines using Clipper processors were Intergraph and High Level Hardware, although Opus Systems offered a product based on the Clipper as part of its Personal Mainframe range. The first processors using the Clipper architecture were designed and sold by Fairchild, but the division responsible for them was subsequently sold to Intergraph in 1987; Intergraph continued work on Clipper processors for use in its own systems.

In computer architecture, 128-bit integers, memory addresses, or other data units are those that are 128 bits wide. Also, 128-bit central processing unit (CPU) and arithmetic logic unit (ALU) architectures are those that are based on registers, address buses, or data buses of that size.

RISC-V is an open standard instruction set architecture (ISA) based on established reduced instruction set computer (RISC) principles. Unlike most other ISA designs, RISC-V is provided under royalty-free open-source licenses. Many companies are offering or have announced RISC-V hardware; open source operating systems with RISC-V support are available, and the instruction set is supported in several popular software toolchains.

<span class="mw-page-title-main">Power ISA</span> Computer instruction set architecture

Power ISA is a reduced instruction set computer (RISC) instruction set architecture (ISA) currently developed by the OpenPOWER Foundation, led by IBM. It was originally developed by IBM and the now-defunct Power.org industry group. Power ISA is an evolution of the PowerPC ISA, created by the mergers of the core PowerPC ISA and the optional Book E for embedded applications. The merger of these two components in 2006 was led by Power.org founders IBM and Freescale Semiconductor.

A compressed instruction set, or simply compressed instructions, are a variation on a microprocessor's instruction set architecture (ISA) that allows instructions to be represented in a more compact format. In most real-world examples, compressed instructions are 16 bits long in a processor that would otherwise use 32-bit instructions. The 16-bit ISA is a subset of the full 32-bit ISA, not a separate instruction set. The smaller format requires some tradeoffs: generally, there are fewer instructions available, and fewer processor registers can be used.

<span class="mw-page-title-main">WD16</span> Microprocessor produced by Western Digital

The WD16 is a 16-bit microprocessor introduced by Western Digital in October 1976. It is based on the MCP-1600 chipset, a general-purpose design that was also used to implement the DEC LSI-11 low-end minicomputer and the Pascal MicroEngine processor. The three systems differed primarily in their microcode, giving each system a unique instruction set architecture (ISA).

References

  1. da Cruz, Frank (October 18, 2004). "The IBM Naval Ordnance Research Calculator". Columbia University Computing History. Retrieved May 8, 2024.
  2. "Russian Virtual Computer Museum _ Hall of Fame _ Nikolay Petrovich Brusentsov".
  3. Trogemann, Georg; Nitussov, Alexander Y.; Ernst, Wolfgang (2001). Computing in Russia: the history of computer devices and information technology revealed. Vieweg+Teubner Verlag. pp. 19, 55, 57, 91, 104–107. ISBN   978-3-528-05757-2..
  4. 650 magnetic drum data processing machine (PDF). IBM. June 1955. 22-6060-2. Retrieved May 8, 2024.
  5. 1 2 IBM 7070-7074 Principles of Operation (PDF). Systems Reference Library. IBM. 1962. GA22-7003-6. Retrieved May 8, 2024.
  6. UNIVAC® Solid-state 80 Computer (PDF). Sperry Rand Corporation. 1959. U1742.1r3. Retrieved May 8, 2024.
  7. IBM 650 MDDPM Additional Features - Indexing Accumulators - Floating-Decimal Arithmetic - Advanced Write-Up (PDF). IBM. 1955. 22-6258-0. Retrieved May 8, 2024.
  8. "AMD64 Architecture Programmer's Manual Volume 6: 128-Bit and 256-Bit XOP and FMA4 Instructions" (PDF). AMD. November 2009.
  9. "Synopsys Introduces New 64-bit ARC Processor IP Delivering up to 3x Performance Increase for High-End Embedded Applications".
  10. "ARMv8 Technology Preview" (PDF). Archived from the original (PDF) on 2018-06-10. Retrieved 2011-10-28.
  11. "ARM goes 64-bit with new ARMv8 chip architecture". Computerworld . 27 October 2011. Retrieved 8 May 2024.
  12. Toshio Yoshida. "Hot Chips 30 conference; Fujitsu briefing" (PDF). Fujitsu. Archived from the original (PDF) on 2020-12-05.
  13. "AVR32 Architecture Document" (PDF). Atmel . Retrieved 2024-05-08.
  14. "Blackfin manual" (PDF). analog.com.
  15. "Blackfin Processor Architecture Overview". Analog Devices . Retrieved 2024-05-08.
  16. "Blackfin memory architecture". Analog Devices. Archived from the original on 2011-06-16. Retrieved 2009-12-18.
  17. 1 2 3 4 5 "Crusoe Exposed: Transmeta TM5xxx Architecture 2". Real World Technologies.
  18. 1 2 3 Alexander Klaiber (January 2000). "The Technology Behind Crusoe Processors" (PDF). Transmeta Corporation. Retrieved December 6, 2013.
  19. Intel Corporation (1981). Introduction to the iAPX 432 Architecture (PDF). pp. iii.
  20. "LatticeMico32 Architecture". Lattice Semiconductor. Archived from the original on 23 June 2010.
  21. "LatticeMico32 Open Source Licensing". Lattice Semiconductor. Archived from the original on 20 June 2010.
  22. MIPS64 Architecture for Programmers: Release 6
  23. MIPS32 Architecture for Programmers: Release 6
  24. MIPS Open
  25. "Wave Computing Closes Its MIPS Open Initiative with Immediate Effect, Zero Warning".
  26. OpenRISC Architecture Revisions
  27. "PDP-8 Users Handbook" (PDF). bitsavers.org. 2019-02-16.
  28. 1 2 "Power ISA Version 3.1". openpowerfoundation.org. 2020-05-01. Retrieved 2021-10-20.
  29. "RISC-V ISA Specifications" . Retrieved 17 June 2019.
  30. Oracle SPARC Processor Documentation
  31. SPARC Architecture License