Registers: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(describe registers a bit)
(2a03 register map)
 
Line 14: Line 14:
* [[PPU registers]]
* [[PPU registers]]
* [[APU registers]]
* [[APU registers]]
* [[2A03|2A03 register map]]

Latest revision as of 23:23, 22 May 2022

Registers provide internal state storage for a device.

These may store a number, like the accumulator register in the CPU, or they may store other behaviour states, like the colour output of the PPU. The various cartridge mappers have registers that control banking, as well as other devices (e.g. IRQ timer).

A register might be entirely internal, or it might have a memory mapped address to provide external access via the CPU. Such registers are often referred to by this write address.

See: