We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS

Bank: Difference between revisions

From SnesLab
Jump to: navigation, search
(where first byte of bank is)
(banks are not inside the '816)
Line 1: Line 1:
A '''Bank''' on the [[65c816]] is 256 contiguous [[pages]].  This is equivalent to 64K (65,536 bytes).
A '''Bank''' in the [[65c816]]'s address space is 256 contiguous [[pages]].  This is equivalent to 64K (65,536 bytes).


The first byte of a bank is always located at an address of the form $xx:0000, where xx is the bank number.  
The first byte of a bank is always located at an address of the form $xx:0000, where xx is the bank number.  

Revision as of 00:54, 5 August 2024

A Bank in the 65c816's address space is 256 contiguous pages. This is equivalent to 64K (65,536 bytes).

The first byte of a bank is always located at an address of the form $xx:0000, where xx is the bank number. A colon is commonly used to separate bank numbers from the low 16 bits of the address. A bank boundary occurs between byte $FFFF of one bank and byte $0000 of the next.

VRAM and ARAM are both exactly one bank.

WRAM is two banks.

The SNES can address up to 256 banks. The data bank register holds the bank number the S-CPU is configured to use. The program bank register tells the 65c816 what bank to fetch the next opcode from.

See Also