Difference between revisions of "8080"

From Chessprogramming wiki
Jump to: navigation, search
(Created page with "'''Home * Hardware * 8080''' FILE:NEC 8080AF die.jpg|border|right|thumb|Die shot of a NEC 8080AF <ref>Die shot of NEC 8080AF microprocessor by [https://c...")
 
Line 56: Line 56:
  
 
'''[[Hardware|Up one Level]]'''
 
'''[[Hardware|Up one Level]]'''
 +
[[Category:Die]]

Revision as of 11:01, 30 June 2018

Home * Hardware * 8080

Die shot of a NEC 8080AF [1]

8080,
a 8-bit microprocessor from Intel released in April 1974 running at 2 MHz. The 8080 is generally considered to be the first truly usable microprocessor. It had an 8-bit data-bus and 16-bit address-bus, allowing to address 64 KByte of memory, containing program code as well as data (Von Neumann architecture).

Architecture

Intel 8080 arch.svg

Intel 8080 Architecture [2]

Register Files

8080 had seven byte-registers: A, B, C, D, E, H, and L. A was the 8-bit accumulator for most arithmetical and logical instructions and the other six could be used as either byte-registers or as three 16-bit register pairs (BC, DE, HL) depending on the particular instruction. HL was also used as (a limited) 16-bit accumulator. It further had a 16-bit stack pointer register and an 16-bit instruction pointer. After a hardware reset ip was cleared zero and started to fetch the first instruction from that address.

Successors

Successor was Intel 8085 in 1977 with same instruction set but required less supporting hardware, and Zilog Z80 [3] .

Endianess

8080 and all it's successors were little-endian machines, concerning the byte-order of 16-bit words in memory.

Software

Operating Systems

Development

Chess Programs

See also

Publications

External Links

KR580VM80A from Wikipedia
Intel 8085 from Wikipedia

References

Up one Level