Sub-pages
Processor Overview
The Motorola 68000 is the central processor of the Amiga. Running at 7.09 MHz (PAL) or 7.16 MHz (NTSC), it provides a 32-bit internal architecture with a 16-bit external data bus and a 24-bit address bus, giving access to 16 MB of address space. While the custom chipset handles graphics, sound, and I/O autonomously via DMA, the 68000 runs the operating system and user programs.
The 68000 is packaged in a 64-pin DIP (Dual Inline Package). In the Amiga 500, it sits on the right side of the motherboard — the tallest chip on the board.
Key Specifications
- Clock: 7.09 MHz (PAL) / 7.16 MHz (NTSC)
- Data bus: 16-bit external (D0–D15), 32-bit internal
- Address bus: 23 lines (A1–A23), byte-addressable via UDS/LDS
- Registers: 8 data (D0–D7), 7 address (A0–A6), USP, SSP, PC, SR
- Instruction set: CISC, variable-length (2–10 bytes)
- Modes: User and Supervisor
Pin Configuration
The 68000's 64 pins are organized into functional groups for data transfer, addressing, bus control, and interrupt handling.
The 68000 uses an asynchronous bus protocol. Each bus cycle begins when the processor asserts AS̄ with a valid address. The addressed device responds by asserting DTACK̄ when data is ready. If no device responds, the bus cycle waits indefinitely — the Amiga's Gary chip generates DTACK̄ for internal address ranges.
Interrupts
The 68000 supports 7 interrupt priority levels. Three input pins (IPL0̄–IPL2̄) encode the pending interrupt level. The processor compares this against the interrupt mask in the status register and services the interrupt if the pending level is higher (level 7 is non-maskable).
In the Amiga, the custom chips and CIAs generate interrupts that Paula prioritizes and routes to the 68000:
Bus Arbitration
The 68000 shares the bus with the custom chipset's DMA controller (Agnus). Three signals manage bus ownership:
In practice, Agnus "steals" cycles from the 68000 transparently. The Amiga's bus timing divides each 280 ns bus cycle into odd and even slots. DMA channels (bitplane, sprite, audio, disk, Copper, Blitter) use specific slots, and the 68000 gets whatever remains.
When BLTPRI is set in DMACON, the Blitter takes absolute priority over the 68000, which can freeze the processor for the duration of large blits.
System Control
The E clock runs at approximately 709 kHz (CLK÷10) and provides the timing reference for the two CIA 8520 chips. Access to the CIAs uses the 6800-compatible synchronous bus protocol (VPĀ/VMĀ/E) rather than the standard asynchronous protocol (DTACK̄), which means CIA accesses are inherently slower than custom chip register accesses.