Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Intel 8085

From Wikipedia, the free encyclopedia
8-bit microprocessor by Intel

Intel 8085
An Intel P8085AH-2 processor variant with black plastic and silver pins
General information
LaunchedMarch 1976
Discontinued2000[1]
Common manufacturer
Performance
Max.CPUclock rate3, 5 and 6 MHz
Data width8 bits
Address width16 bits
Architecture and classification
Technology node3 μm
Instruction set8085
Physical specifications
Transistors
  • 6,500
Package
Socket
History
PredecessorIntel 8080
SuccessorIntel 8086
Support status
Unsupported

The Intel 8085 ("eighty-eighty-five") is an8-bitmicroprocessor produced byIntel and introduced in March 1976.[2] It isbinary compatible with the more famousIntel 8080. It is the last 8-bit microprocessor developed by Intel. The "5" in the part number highlighted the fact that the 8085 uses a single +5-volt (V) power supply, compared to the 8080's +5, −5, and +12 V, which makes the 8085 easier to integrate into systems that by this time were mostly +5 V.

The other major change was the addition of four new interrupt pins and aserial port, with separate input and output pins. This was often all that was needed in simple systems and eliminated the need for separateintegrated circuits to provide this functionality, as well as simplifying thecomputer bus as a result. The only changes in theinstruction set compared to the 8080 were instructions for reading and writing data using these pins.

The 8085 is supplied in a 40-pinDIP package. Given the new pins, this requiredmultiplexing 8-bits of the address (AD0–AD7) bus with the data bus. This means that specifying a complete 16-bit address requires it to be sent via two 8-bit pathways, and one of those two has to be temporarily latched using separate hardware such as a74LS373. Intel manufactured several support chips with an address latch built in. These include the 8755, with an address latch, 2 KB ofEPROM and 16 I/O pins, and the 8155 with 256 bytes ofRAM, 22 I/O pins and a 14-bit programmable timer/counter. The multiplexed address/data bus reduced the number of PCB tracks between the 8085 and such memory and I/O chips.

While the 8085 was an improvement on the 8080, it was eclipsed by theZilog Z80 in the late 1970s and early 1980s, which took over much of the desktop computer market.

Although not widely used in computers, the 8085 had a long life as a microcontroller. Once designed into such products as theDECtape II controller and theVT102 video terminal in the late 1970s, the 8085 served for new production throughout the lifetime of those products.

Intel 8085A CPU die

Description

[edit]
i8085 microarchitecture
i8085 pinout

The 8085 is a conventionalvon Neumann design based on the Intel 8080. Unlike the 8080 it does not multiplex state signals onto the data bus, but the 8-bitdata bus is instead multiplexed with the lower eight bits of the 16-bitaddress bus to limit the number of pins to 40. State signals are provided by dedicated bus control signal pins and two dedicated bus state ID pins named S0 and S1. Pin 40 is used for the power supply (+5 V) and pin 20 for ground. Pin 39 is used as the Hold pin.

The Intel 8085 processor was designed usingnMOS circuitry, with later "H" versions implemented in Intel's enhanced nMOS process known asHMOS II ("High-performance MOS"), which was originally developed for fast static RAM products.[3] Unlike the 8080, the 8085 requires only a single 5-volt power supply, similar to its competing processors. The 8085 contains approximately 6,500transistors.[4]

The 8085 incorporates the functions of the 8224 (clock generator) and the 8228 (system controller) on chip, increasing the level of integration. A downside compared to similar contemporary designs (such as the Z80) is the fact that the buses require demultiplexing; however, address latches in the Intel 8155, 8355, and 8755 memory chips allow a direct interface, so an 8085 along with these chips is almost a complete system.

The 8085 has extensions to support newinterrupts, with three maskable vectored interrupts (RST 7.5, RST 6.5 and RST 5.5), onenon-maskable interrupt (TRAP), and one externally serviced interrupt (INTR). Each of these five interrupts has a separate pin on the processor, a feature which permits simple systems to avoid the cost of a separate interrupt controller. The RST 7.5 interrupt is edge triggered (latched), while RST 5.5 and 6.5 are level-sensitive. All interrupts except TRAP are enabled by the EI instruction and disabled by the DI instruction. In addition, the SIM (Set Interrupt Mask) and RIM (Read Interrupt Mask) instructions, the only instructions of the 8085 that are not from the 8080 design, allow each of the three maskable RST interrupts to be individually masked. All three are masked after a normal CPU reset. SIM and RIM also allow the global interrupt mask state and the three independent RST interrupt mask states to be read, the pending-interrupt states of those same three interrupts to be read, the RST 7.5 trigger-latch flip-flop to be reset (cancelling the pending interrupt without servicing it), and serial data to be sent and received via the SOD and SID pins, respectively, all under program control and independently of each other.

SIM and RIM each execute in four clock cycles (T states), making it possible to sample SID and/or toggle SOD considerably faster than it is possible to toggle or sample a signal via any I/O or memory-mapped port, e.g. one of the ports of an 8155. (In this way, SID can be compared to the SO ["Set Overflow"] pin of the 6502 CPU contemporary to the 8085.)

Like the 8080, the 8085 can accommodate slower memories through externally generatedwait states (pin 35, READY), and has provisions forDirect Memory Access (DMA) using HOLD and HLDA signals (pins 39 and 38). An improvement over the 8080 is that the 8085 can itself drive apiezoelectric crystal directly connected to it, and a built-in clock generator generates the internal high-amplitudetwo-phase clock signals at half the crystal frequency (a 6.14 MHz crystal would yield a 3.07 MHz clock, for instance). The internal clock is available on an output pin, to drive peripheral devices or other CPUs in lock-step synchrony with the CPU from which the signal is output. The 8085 can also be clocked by an externaloscillator (making it feasible to use the 8085 in synchronous multi-processor systems using a system-wide common clock for all CPUs, or to synchronize the CPU to an external time reference such as that from a video source or a high-precision time reference).

The 8085 is abinary compatible follow-up on the 8080. It supports the completeinstruction set of the 8080, with exactly the same instruction behavior, including all effects on the CPU flags (except for the AND/ANI operation, which sets the AC flag differently).[5] This means that the vast majority of object code (any program image in ROM or RAM) that runs successfully on the 8080 can run directly on the 8085 without translation or modification. (Exceptions include timing-critical code and code that is sensitive to the aforementioned difference in the AC flag setting or differences in undocumented CPU behavior.) 8085 instruction timings differ slightly from the 8080—some 8-bit operations, including INR, DCR, and the heavily used MOV r,r instructions, are one clock cycle faster, but instructions that involve 16-bit operations, including stack PUSH (which decrements the 16-bit SP register) generally one cycle slower. Conditional jumps not taken are three clocks faster on the 8085. As mentioned already, only the SIM and RIM instructions were new to the 8085.[nb 1]

Programming model

[edit]
Intel 8085 registers
15141312111009080706050403020100(bit position)
Main registers
AFlagsProgramStatusWord
BCB
DED
HLH (indirect address)
Index registers
SPStackPointer
Program counter
PCProgramCounter
Status register
SZ-AC-P-CYFlags
Interrupt Mask Register
SOSE-R7.5MSEE7.5 E6.5 E5.5SIM (write)
SII7.5 I6.5 I5.5IEE7.5 E6.5 E5.5RIM (read)

The processor has seven 8-bitregisters accessible to the programmer, named A, B, C, D, E, H, and L, where A is also known as the accumulator. The other six registers can be used as independent byte-registers or as three 16-bit register pairs, BC, DE, and HL (or B, D, H, as referred to in Intel documents), depending on the particular instruction.

Some instructions use HL as a (limited) 16-bit accumulator. As in the 8080, the contents of the memory address pointed to by HL can be accessed as pseudo register M. It also has a 16-bitprogram counter and a 16-bitstack pointer to memory (replacing the 8008's internalstack). Instructions such as PUSH PSW, POP PSW affect the Program Status Word (accumulator and flags). The accumulator stores the results of arithmetic and logical operations, and the flags register bits (sign, zero, auxiliary carry, parity, and carry flags) are set or cleared according to the results of these operations. The sign flag is set if the result has a negative sign (i.e. it is set if bit 7 of the accumulator is set). The auxiliary or half carry flag is set if a carryover from bit 3 to bit 4 occurred. The parity flag is set to 1 if the parity (number of 1-bits) of the accumulator is even; if odd, it is cleared. The zero flag is set if the result of the operation was 0. Lastly, the carry flag is set if a carryover from bit 7 of the accumulator (the MSB) occurred.

Commands/instructions

[edit]

As in many other 8-bit processors, all instructions are encoded in a single byte (including register-numbers, but excluding immediate data), for simplicity. Some of them are followed by one or two bytes of data, which can be an immediate operand, a memory address, or a port number. A NOP "no operation" instruction exists, which does not modify any of the registers or flags. Like larger processors, it has CALL and RET instructions for multi-level procedure calls and returns (which can be conditionally executed, like jumps) and instructions to save and restore any 16-bit register-pair on the machine stack. There are also eight one-byte call instructions (RST) for subroutines located at the fixed addresses 00h, 08h, 10h,...,38h. These are intended to be supplied by external hardware in order to invoke a corresponding interrupt-service routine, but are also often employed as fast system calls. One sophisticated instruction is XTHL, which is used for exchanging the register pair HL with the value stored at the address indicated by the stack pointer.

8-bit instructions

[edit]

All two-operand 8-bit arithmetic and logical (ALU) operations work on the 8-bitaccumulator (the A register). For two-operand 8-bit operations, the other operand can be either an immediate value, another 8-bit register, or a memory cell addressed by the 16-bit register pair HL. The only 8-bit ALU operations that can have a destination other than the accumulator are the unary incrementation or decrementation instructions, which can operate on any 8-bit register or on memory addressed by HL, as for two-operand 8-bit operations. Direct copying is supported between any two 8-bit registers and between any 8-bit register and an HL-addressed memory cell, using the MOV instruction. An immediate value can also be moved into any of the foregoing destinations, using the MVI instruction. Due to the regular encoding of the MOV instruction (using nearly a quarter of the entire opcode space) there are redundant codes to copy a register into itself (MOV B,B, for instance), which are of little use, except for delays.[nb 2] However, what would have been a copy from the HL-addressed cell into itself (i.e.,MOV M,M) instead encodes theHLT instruction, halting execution until an external reset or unmasked interrupt occurs.[nb 3]

16-bit operations

[edit]

Although the 8085 is an 8-bit processor, it has some 16-bit operations. Any of the three 16-bit register pairs (BC, DE, HL) or SP can be loaded with an immediate 16-bit value (using LXI), incremented or decremented (using INX and DCX), or added to HL (using DAD). LHLD loads HL from directly addressed memory and SHLD stores HL likewise. The XCHG operation exchanges the values of HL and DE. XTHL exchanges last item pushed on stack with HL. Adding HL to itself performs a 16-bit arithmetic left shift with one instruction. The only 16-bit instruction that affects any flag is DAD (adding BC, DE, HL, or SP to HL), which updates the carry flag to facilitate 24-bit or larger additions and left shifts. Adding the stack pointer to HL is useful for indexing variables in (recursive) stack frames. A stack frame can be allocated using DAD SP and SPHL, and a branch to a computed pointer can be done with PCHL. These abilities make it feasible to compile languages such asPL/M,Pascal, orC with 16-bit variables and produce 8085 machine code. Subtraction and bitwise logical operations on 16 bits is done in 8-bit steps. Operations that have to be implemented by program code (subroutine libraries) include comparisons of signed integers as well as multiplication and division.

Undocumented instructions

[edit]

A number of undocumented instructions and flags were discovered by two software engineers, Wolfgang Dehnhardt and Villy M. Sorensen in the process of developing an 8085 assembler. These instructions use 16-bit operands and include indirect loading and storing of a word, a subtraction, a shift, a rotate, and offset operations.[6]

By the time 8085 was designed but not yet announced, many designers found it to be inferior to the competing products already on the market. The next generation 16-bit 8086 CPU was already in development. Intel made a last minute decision to leave 10 out of 12 new 8085 instructions undocumented to speed up and simplify the design of the upcoming 8086 CPU.[7]

Instruction set

[edit]
See also:Intel 8080 § Instruction set, andZ80 instruction set

Differences between the 8080 and the 8085 arehighlighted. Compared to the 8080, the 8085 may take more clocks, fewer clocks, or a mixture. For explanations of some symbols, see lower part of the table.

OpcodeOperandsMnemonicClocksDescription
76543210b2b3
00000000NOP4No operation
00RP0001datlodathiLXIrp,data10RP ←data
00RP0010STAXrp7(RP) ← A [BC or DE only]
00RP0011INXrp6 ↑RP ← RP + 1
00DDD100INRddd4/10 ↓DDD ← DDD + 1
00DDD101DCRddd4/10 ↓DDD ← DDD - 1
00DDD110dataMVIddd,data7/10DDD ← data
00RP1001DADrp10HL ← HL + RP
00RP1010LDAXrp7A ← (RP) [BC or DE only]
00RP1011DCXrp6 ↑RP ← RP - 1
00000111RLC4A1-7 ← A0-6; A0 ← Cy ← A7
00001111RRC4A0-6 ← A1-7; A7 ← Cy ← A0
00010111RAL4A1-7 ← A0-6; Cy ← A7; A0 ← Cy
00011111RAR4A0-6 ← A1-7; Cy ← A0; A7 ← Cy
00100000RIM4A ← interrupt mask
00100010addloaddhiSHLDadd16(add) ← HL
00100111DAA4If A0-3 > 9 OR AC = 1 then A ← A + 6;

then if A4-7 > 9 OR Cy = 1 then A ← A + 0x60

00101010addloaddhiLHLDadd16HL ← (add)
00101111CMA4A ← ¬A
00110000SIM4interrupt mask ← A
00110010addloaddhiSTAadd13(add) ← A
00110111STC4Cy ← 1
00111010addloaddhiLDAadd13A ← (add)
00111111CMC4Cy ← ¬Cy
01DDDSSSMOVddd,sss4/7 ↓DDD ← SSS
01110110HLT5 ↓Halt
10ALUSSSADD ADC SUB SBB ANA XRA ORA CMPsss4/7A ← A [ALU operation] SSS
11CC000Rcc (RET conditional)6/12 ↑If cc true, PC ← (SP), SP ← SP + 2
11RP0001POPrp10RP ← (SP), SP ← SP + 2
11CC010addloaddhiJccadd (JMP conditional)7/10 ↓If cc true, PC ← add
11000011addloaddhiJMPadd10PC ← add
11CC100addloaddhiCccadd (CALL conditional)9/18 ↕If cc true, SP ← SP - 2, (SP) ← PC, PC ← add
11RP0101PUSHrp12 ↑SP ← SP - 2, (SP) ← RP
11ALU110dataADI ACI SUI SBI ANI XRI ORI CPIdata7A ← A [ALU operation] data
11N111RSTn12 ↑SP ← SP - 2, (SP) ← PC, PC ← N x 8
11001001RET10PC ← (SP), SP ← SP + 2
11001101addloaddhiCALLadd18 ↑SP ← SP - 2, (SP) ← PC, PC ← add
11010011portOUTport10Port ← A
11011011portINport10A ← Port
11100011XTHL16 ↓HL ↔ (SP)
11101001PCHL6 ↑PC ← HL
11101011XCHG4HL ↔ DE
11110011DI4Disable interrupts
11111001SPHL6 ↑SP ← HL
11111011EI4Enable interrupts
76543210b2b3MnemonicClocksDescription
SSS DDD210CCALURP
B000NZADD ADI (A ← A + arg)BC
C001ZADC ACI (A ← A + arg + Cy)DE
D010NCSUB SUI (A ← A - arg)HL
E011CSBB SBI (A ← A - arg - Cy)SP or PSW
H100POANA ANI (A ← A ∧ arg)
L101PEXRA XRI (A ← A ⊻ arg)
M110PORA ORI (A ← A ∨ arg)
A111NCMP CPI (A - arg)
SSS DDD210CCALU

Input/output scheme

[edit]

The 8085 supports bothport-mapped and memory-mapped I/O. It supports up to 256input/output (I/O) ports via dedicated Input/Output instructions, with port addresses as operands. Port-mapped IO can be an advantage on processors with limited address space. During a port-mapped I/O bus cycle, the 8-bit I/O address is output by the CPU on both the lower and upper halves of the 16-bit address bus.

Devices designed for memory mapped I/O can also be accessed by using the LDA (load accumulator from a 16-bit address) and STA (store accumulator at a 16-bit address specified) instructions, or any other instructions that have memory operands. A memory-mapped IO transfer cycle appears on the bus as a normal memory access cycle.

Development system

[edit]
Main article:Intel system development kit

Intel produced a series of development systems for the 8080 and 8085, known as the MDS-80 Microprocessor System. The original development system had an 8080 processor. Later 8085 and 8086 support was added including ICE (in-circuit emulators). It is a large and heavy desktop box, about a 20" cube (in the Intel corporate blue color) which includes a CPU, monitor, and a single 8-inch floppy disk drive. Later an external box was made available with two more floppy drives. It runs theISIS operating system and can also operate anemulator pod and an externalEPROM programmer. This unit uses the Multibus card cage which was intended just for the development system. A surprising number of spare card cages and processors were being sold, leading to the development of the Multibus as a separate product.

The later iPDS is a portable unit, about 8" × 16" × 20", with a handle. It has a small green screen, a keyboard built into the top, a 5¼ inch floppy disk drive, and runs the ISIS-II operating system. It can also accept a second 8085 processor, allowing a limited form of multi-processor operation where both processors run simultaneously and independently. The screen and keyboard can be switched between them, allowing programs to be assembled on one processor (large programs took a while) while files are edited in the other. It has abubble memory option and various programming modules, including EPROM, andIntel 8048 and8051 programming modules which are plugged into the side, replacing stand-alone device programmers. In addition to an 8080/8085 assembler, Intel produced a number of compilers including those forPL/M-80 andPascal, and a set of tools for linking and statically locating programs to enable them to be burned intoEPROMs and used inembedded systems.

A lower cost "MCS-85 System Design Kit" (SDK-85) board contains an 8085 CPU, an 8355 ROM containing a debugging monitor program, an 8155 RAM and 22 I/O ports, an 8279 hex keypad and 8-digit 7-segment LED, and a TTY (Teletype)20 mA current loop serial interface. Pads are available for one more 2K×8 8755 EPROM, and another256 byte RAM 8155 I/O Timer/Counter can be optionally added. All data, control, and address signals are available on dual pin headers, and a large prototyping area is provided.

List of Intel 8085 Models

[edit]
Model NumberProcessClock
Speed
Tempe-
rature
Range
Current
Rating
Power
Tolerance
PackageDate of
Release
Price
(USD)
[list 1]
NodeTech-
nology
8085A[3]NMOS3 μm3 MHz170 mA± 5%6.25
P8085AH[3]HMOS II2 μm3 MHz135 mA± 10%PlasticJul/Aug 19814.40
8085-2[8]5 MHz
8085A-2[3]NMOS3 μm5 MHz170 mA± 5%8.75
P8085AH-2[3]HMOS II2 μm5 MHz135 mA± 10%PlasticJul/Aug 19815.80
P8085AH-1[3]HMOS II2 μm6 MHzPlasticJul/Aug 198112.45
ID8085[9]3 MHzIndustrialMar/Apr 197938.75
M8085A[10]3 MHzMilitaryMar/Apr 1979110.00
  1. ^In quantities of 100 and up

Applications

[edit]

The 8085 processor was used in a few early personal computers, for example, theTRS-80 Model 100 line used an OKI manufactured 80C85 (MSM80C85ARS). TheCMOS version 80C85 of the NMOS/HMOS 8085 processor has several manufacturers. IBM used the 8085 in theIBM System/23 Datamaster concealed under the reference 4178615.[11] In theSoviet Union, an 80C85 clone was developed under thedesignation IM1821VM85A (Russian:ИМ1821ВМ85А [ru]) which in[update] 2016 was still in production.[12] Some manufacturers provide variants with additional functions such as additional instructions.[citation needed]

Theradiation hardened version of the 8085 has been in on-board instrument data processors for severalNASA andESA space physics missions in the 1990s and early 2000s, includingCRRES,Polar,FAST,Cluster,HESSI, theSojourner Mars Rover,[13] andTHEMIS. The Swiss company SAIA used the 8085 and the 8085–2 as the CPUs of their PCA1 line ofprogrammable logic controllers during the 1980s.

Pro-Log Corp. put the 8085 and supporting hardware on an STD Bus format card containing CPU, RAM, sockets for ROM/EPROM, I/O and external bus interfaces. The included Instruction Set Reference Card uses entirely different mnemonics for the Intel 8085 CPU. The product was a direct competitor to Intel'sMultibus card offerings.

Western Digital's WD1003-SCS is a 1:1interleaveSCSIdisk controller that interfaces toST506-style disk drives. It is an example of an embedded 8085 application that was just beyond the capabilities of availablemicrocontrollers as its RAM requiredDMA access.[14]

MCS-85 family

[edit]

The 8085 CPU is one part of a family of chips developed by Intel for building a complete system. Many of these support chips were also used with other processors. The original IBM PC based on the Intel 8088 processor used several of these chips; the equivalent functions today are provided byVLSI chips, namely the "Southbridge" chips.

  • 8085 – CPU
  • 8231 – Arithmetic Processing Unit
  • 8232 – Floating-Point Processor
  • 8205 – 1 of 8 Binary Decoder

Static RAM

[edit]
  • 8155 – 2K-bit static MOS RAM with 3 I/O Ports and Timer. Multiplexed address/data. Active low CE. The industrial version of ID8155 was available forUS$37.50 in quantities of 100 and up.[9][15] The military version of M8155 was available forUS$100.00 in quantities of 100.[10] There is aMHz version of Intel 8155–2.[8] The available 8155H was introduced using theHMOS II technology which it uses 30 percent less power than the previous generation. The plastic package version of P8155H (3 MHz) and P8155H-2 (5 MHz) are available forUS$5.15 andUS$6.40 per 100 in quantities respectively.[3]
  • 8156 – 2K-bit static MOS RAM with 3 I/O Ports and Timer. Multiplexed address/data. Active high CE. The industrial version of ID8156 was available forUS$37.50 in quantities of 100.[9][15] There is a5 MHz version of Intel 8156–2.[8] The available 8156H was introduced using the HMOS II technology which it uses 30 percent less power than the previous generation. The plastic package version of P8156H (3 MHz) and P8156H-2 (5 MHz) are available forUS$5.15 andUS$6.40 per 100 in quantities respectively.[3]
  • 8185 – 1,024 x 8-bit static RAM packaged in a compact 18-pin DIP. It includes three chip selects and an internal address latch driven directly by the 8085's ALE. The5 MHz version of Intel 8185-2 was available forUS$48.75 in quantity of 100.[8]

ROM memory

[edit]
  • 8355 – 2,048 × 8-bit ROM, two 8-bit I/O ports. Multiplexed address/data. The industrial version of ID8355 was available forUS$22.00 in quantities of 1000.[9] There is a5 MHz version of Intel 8355–2.[8]
  • 8755 – 2048 x 8-bitEPROM, two 8-bit I/O ports. Multiplexed address/data. The Intel 8755A-2 is the5 MHz version. That version was available forUS$81.00 in quantity of 100.[8] There was an Industrial Grade version Intel I8755A-8.[15]

RAM controllers

[edit]
  • 8202 – Dynamic RAM Controller. This supports the Intel 2104A, 2117, or 2118 DRAM modules, up to 128 KB of DRAM modules. Price was reduced toUS$36.25 for quantities of 100 for the D8202 package style around May 1979.[16]
  • 8203 – Dynamic RAM Controller. The Intel 82C03 CMOS version dissipates less than 25 mA. It supports up to 32x 64K-bit RAM for a total capacity of up to256 KB.[17] It refreshes every 10 to 16 microseconds. It supports multiplexing of row and column memory addresses. It generates strobes to latch the address internally. It arbitrates between simultaneous requests for memory access and refresh. It also acknowledges memory-access cycles to the system CPU. The 82C03 was available in either ceramic or plastic packages forUS$32.00 in 100 pieces quantity.[18]
  • 8207 – DRAM Controller

Periphery

[edit]
  • 8206 – Error Detection & Correction Unit
  • 8210 – TTL To MOS Shifter & High Voltage Clock Driver
  • 8212 – 8-bit I/O Port. The industrial version of ID8212 was available forUS$6.75 in quantities of 100.[9]
  • 8216 – 4-bit Parallel Bidirectional Bus Driver. The industrial version of ID8216 was available forUS$6.40 in quantities of 100.[9]
  • 8218/8219 – Bus Controller
  • 8226 – 4-bit Parallel Bidirectional Bus Driver. The industrial version of ID8226 was available forUS$6.40 in quantities of 100.[9]
  • 8237 – DMA Controller
  • 8251USART Communication Controller
  • 8253Programmable Interval Timer
  • 8254 – Programmable Interval Timer. The 82C54 CMOS version was outsourced toOki Electronic Industry Co., Ltd.[19]
  • 8255 – Programmable Peripheral Interface
  • 8256 – Multifunction Peripheral. This multifunction chip usesSerial Communications,Parallel I/O,Counter/Timers andInterrupts. The Intel 8256AH was available forUS$21.40 in quantities of 100.[20] This integrated circuit chip integrates the chips with the following functionality:
  • 8257DMA Controller
  • 8259Programmable Interrupt Controller
  • 8271 – Programmable Floppy Disk Controller
  • 8272 – Single/Double Density Floppy Disk Controller. It is compatible withIBM 3740 andSystem 34 formats and provides bothFrequency Modulation (FM) orModified Frequency Modulation (MFM). This version was available forUS$38.10 in quantities of 100.[21]
  • 8273 – ProgrammableHDLC/SDLC Protocol Controller. This device supports ISO/CCITT's HDLC and IBM's SDLC communication protocols. These were available forUS$33.75 (4 MHz) andUS$30.00 (8 MHz) in quantities of 100.[21]
  • 8274 – Multi-Protocol Serial Controller. This support three different protocols using the following feature of Asynchronous Operation, Byte Synchronous Operation and Bit Synchronous Operation. The Byte Synchronous mode is compatible to IBM'sBisync signal protocol. The Bit Synchronous mode is compatible to IBM'sSDLC and the International Standards Organization'sHDLC protocol and is compatible withCCITT X.25 international standard as well. It was packaged in 40-pin product using the Intel'sHMOS technology. The available version is rated up to 880 kilobaud forUS$30.30 in the quantities of 100.[22] NEC μPD7201 was also compatible.
  • 8275 – Programmable CRT Controller. It refreshes the raster scan display by buffering from main memory and keeping track of the display portion. This version was available forUS$32.00 in quantities of 100.[21]
  • 8276 – Small System CRT Controller
  • 8278 – Programmable Key Board Interface
  • 8279 – Key Board/Display Controller
  • 8282 – 8-bit Non-Inverting Latch with Output Buffer
  • 8283 – 8-bit Inverting Latch with Output Buffer
  • 8291 –GPIB Talker/Listener. This controller can operate from 1 to8 MHz. It was available forUS$23.75 in quantities of 100.[21]
  • 8292 –GPIB Controller. Designed around Intel 8041A which it has been programmed as an controller interface element. It also controls the bus using three lock-up timers to detect issues on the GPIB bus interface. It was available forUS$21.25 in quantities of 100.[21]
  • 8293 – GPIB Transceiver. This chipset supports up to 4 different modes: Mode 0 Talker/Listener Control Lines, Mode 1 Talker/Listener/Controller Control Lines, Mode 2 Talker/Listener/Controller Data Lines, and Mode 3 Talker/Listener Data Lines. It was available forUS$11.50 in quantities of 100. At the time of release, it was available in samples then full production in the first quarter of 1980.[23]
  • 8294 – Data Encryption/Decryption Unit + 1 O/P Port. It encrypts and decrypts 64-bit blocks of data using theFederal Information Processing Data Encryption Standard algorithm. This also uses theNational Bureau of Standards encryption algorithm. This DEU operates using a 56-bit user-specified key to generate 64-bit cipher words. It was available forUS$22.50 in quantities of 100.[21]
  • 8295 – Dot Matrix Printer Controller. This interfaces with LRC 7040 Seriesdot matrix printers and other small printers as well. It was available forUS$20.65 in quantities of 100.[21]

Educational use

[edit]

In many engineering schools the 8085 processor is used in introductory microprocessor courses. Trainer kits composed of a printed circuit board, 8085, and supporting hardware are offered by various companies. These kits usually include complete documentation allowing a student to go from soldering to assembly language programming in a single course. Also, the architecture and instruction set of the 8085 are easy for a student to understand. Shared Project versions of educational and hobby 8085-basedsingle-board computers are noted below in the External Links section of this article.

Simulators

[edit]

Software simulators are available for the 8085 microprocessor, which allow simulated execution of opcodes in a graphical environment.

See also

[edit]

Notes

[edit]
  1. ^Note that theZ80 assigns different instructions—two of the Z80's 6 relative jumps—to the opcodes that the 8085 uses for RIM and SIM, making 8085 programs that use these instructions generally unable to run on the Z80 without modification. Since use of these instructions usually relates to 8085-specific hardware features, the necessary program modification would typically be nontrivial.
  2. ^Even so, there is no need for seven different effectively identical delay instructions, and they are also identical in effect and form to the NOP instruction, except that NOP conveniently has the opcode 00 hex.
  3. ^The TRAP interrupt, being anNMI, can always bring the 8085 out of the HALT state.

References

[edit]
  1. ^"The Life Cycle of a CPU".www.cpushack.com.
  2. ^"Intel Microprocessor Quick Reference Guide - Year".www.intel.com.
  3. ^abcdefghIntel Corporation, "New Products: HMOS MCS-85 Chips Uses 20 to 30 Percent Less Power", Solutions, July/August 1981, Page 22
  4. ^The history of the microcomputer-invention and evolution, S Mazor - Proceedings of the IEEE, 1995
  5. ^The MCS-80/85 Family User's Manual(PDF).Intel. January 1983. pp. 1–8.Archived(PDF) from the original on August 29, 2017.The 8085A CPU is 100% software compatible with the Intel 8080A CPU.
  6. ^Dehnhardt, Wolfgang; M. Sorensen, Villy (January 1979)."Unspecified 8085 op codes enhance programming".Electronics. McGraw-Hill:144–145.ISSN 0013-5070.
  7. ^Mazor, Stanley (January–March 2010). "Intel's 8086".IEEE Annals of the History of Computing.32 (1). IEEE Computer Society:75–79.Bibcode:2010IAHC...32a..75M.doi:10.1109/MAHC.2010.22.ISSN 1058-6180.
  8. ^abcdefIntel Corporation, "New EPROM completes 5MHz capability for MCS-85 family", Intel Preview, January/February 1980, p. 24.
  9. ^abcdefgIntel Corporation, "Microcomputer Component: New industrial grade product line answers the demand for high-reliability components to operate in industrial applications.", Intel Preview, March/April 1979, p. 11.
  10. ^abIntel Corporation, "Military Products: Intel marches on!", Intel Preview, March/April 1979, p. 19.
  11. ^https://bitsavers.org/pdf/ibm/logic/IC_Cross-Reference/IBM_Part_Number_to_Industry_Part_Number_20240729.txt
  12. ^"Микропроцессорный комплект М1821" [Microprocessor system M1821] (in Russian). Novosibirsk: AO NZPP. RetrievedMay 31, 2016.
  13. ^"Description of the Rover Sojourner".mars.jpl.nasa.gov.
  14. ^Storage Management Products Handbook 1986(PDF). Western Digital. 1986. p. 6-160. RetrievedSeptember 13, 2025.
  15. ^abcIntel Corporation, "8086 Available for industrial environment", Intel Preview Special Issue: 16-Bit Solutions, May/June 1980, p. 29.
  16. ^Intel Corporation, "Microcomputer Components: Intel reduces prices on the 8202, the first single chip, complete solution to dynamic RAM control", Intel Preview, May/June 1979, p. 11.
  17. ^"Intel 8203 64K Dynmaic RAM controller".Alldatasheet. Intel. RetrievedAugust 26, 2025.
  18. ^Intel Corporation, "New Product Focus Components: A Refreshing New Dynamic RAM Controller", Solutions, July/August 1984, Page 12.
  19. ^Intel Corporation, "NewsBit: Intel Licenses Oki on CMOS Version of Several Products", Solutions, July/August 1984, Page 1.
  20. ^Intel Corporation, "New Product Focus Components: Peripheral Vision: The 8256AH Combines Four Chips In One", Solutions, July/August 1984, Page 13.
  21. ^abcdefgIntel Corporation, "Intel peripherals enhance 8086 system design", Intel Preview Special Issue: 16-Bit Solution, May/June 1980, p. 22.
  22. ^Intel Corporation, "New Products: High-Speed Controller Supports Three Protocols", Solutions, July/August 1981, Page 18
  23. ^Intel Corporation, "Feature: 8293 Transceiver completes Intel GPIB family", Intel Preview, January/February 1980, p. 13.

Further reading

[edit]
Books
Reference Cards

External links

[edit]

Simulators:

Boards:

Lists
Microarchitectures
IA-32 (32-bit x86)
x86-64 (64-bit)
x86ULV
Current products
x86-64 (64-bit)
Discontinued
BCD oriented (4-bit)
pre-x86 (8-bit)
Earlyx86 (16-bit)
x87 (externalFPUs)
8/16-bit databus
8087 (1980)
16-bit databus
80C187
80287
80387SX
32-bit databus
80387DX
80487
IA-32 (32-bit x86)
x86-64 (64-bit)
Other
Related
Authority control databases: NationalEdit this at Wikidata
Retrieved from "https://en.wikipedia.org/w/index.php?title=Intel_8085&oldid=1324184583"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp