VRAM: Difference between revisions
mNo edit summary |
m (Fix typo) |
||
(12 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
VRAM | '''VRAM''' stands for Video RAM. | ||
[[File:Aes_cxk5814.jpg|thumb|One of two CXK5814 2KiB RAM chips used for the upper zone of the VRAM ($8000~$87FF) on a AES system]] | [[File:Aes_cxk5814.jpg|thumb|One of two CXK5814 2KiB RAM chips used for the upper zone of the VRAM ($8000~$87FF) on a AES system]] | ||
The NeoGeo has 68KiB | The NeoGeo has 68KiB of VRAM split in two: a 64KiB lower zone, and 4KiB higher zone. Contrary to other systems, the VRAM '''does not contain actual graphics'''. It is used to store [[Sprites|sprite]] attributes, the [[fix layer]] tile map and sprite lists for video rendering. | ||
Access to VRAM is always done through 3 [[memory mapped registers]] handled by the [[LSPC]], it does not appear in the [[68k]] address space. Every VRAM address points to a 16-bit word, not a byte. | |||
* {{Reg|REG_VRAMADDR ($3C0000)}} sets the VRAM address for the next read/write operation | * {{Reg|REG_VRAMADDR ($3C0000)}} sets the VRAM address for the next read/write operation. | ||
* {{Reg|REG_VRAMRW ($3C0002)}} is the data read or to write | * {{Reg|REG_VRAMRW ($3C0002)}} is the data read or to write. | ||
* {{Reg|REG_VRAMMOD ($3C0004)}} is the signed value added to the VRAM address after a write | * {{Reg|REG_VRAMMOD ($3C0004)}} is the signed value automatically added to the VRAM address after a write. | ||
Due to the different access slots used internally for each of the VRAM zones, the address register must be set directly instead of relying on {{Reg|REG_VRAMMOD}} to cross zones ($0000~$7FFF to/from $8000~$FFFF). | |||
==Memory map== | |||
[[File:Vrammap.png|right|frame]] | [[File:Vrammap.png|right|frame]] | ||
Line 20: | Line 19: | ||
|'''Start''' | |'''Start''' | ||
|'''End''' | |'''End''' | ||
|'''Words''' | |||
|'''Zone''' | |||
|'''Description''' | |'''Description''' | ||
|- | |- | ||
|$0000 | |$0000 | ||
|$6FFF | |$6FFF | ||
|28K | |||
|rowspan=3|Lower | |||
|[[Sprites#SCB1|SCB1]] | |[[Sprites#SCB1|SCB1]] | ||
|- | |- | ||
|$7000 | |$7000 | ||
|$74FF | |$74FF | ||
|rowspan=2|4K | |||
|[[Fix layer|Fix map]] | |[[Fix layer|Fix map]] | ||
|- | |- | ||
Line 36: | Line 40: | ||
|$8000 | |$8000 | ||
|$81FF | |$81FF | ||
|512 | |||
|rowspan=5|Upper | |||
|[[Sprites#SCB2|SCB2]] | |[[Sprites#SCB2|SCB2]] | ||
|- | |- | ||
|$8200 | |$8200 | ||
|$83FF | |$83FF | ||
|512 | |||
|[[Sprites#SCB3|SCB3]] | |[[Sprites#SCB3|SCB3]] | ||
|- | |- | ||
|$8400 | |$8400 | ||
|$85FF | |$85FF | ||
|512 | |||
|[[Sprites#SCB4|SCB4]] | |[[Sprites#SCB4|SCB4]] | ||
|- | |- | ||
|$8600 | |$8600 | ||
|$867F | |$867F | ||
|128 | |||
|Sprite list for even scanlines | |Sprite list for even scanlines | ||
|- | |- | ||
|$8680 | |$8680 | ||
|$86FF | |$86FF | ||
|128 | |||
|Sprite list for odd scanlines | |Sprite list for odd scanlines | ||
|- | |||
|$8700 | |||
|$87FF | |||
|256 | |||
|Unused (free) | |||
|} | |} | ||
Even if VRAM can be modified | ==Access timing== | ||
Even if VRAM can be modified even during active display, some timing restrictions have to be met in order to avoid skipping writes or reading incorrect data. This is because the [[LSPC]] can only provide a limited number of access slots for the CPU between the video rendering steps. | |||
SNK imposed minimum waiting times to always be sure that no read or write operation to VRAM will fail: | |||
* After writing the VRAM address, a read will return valid data after 16 CPU cycles or more (>32mclk). | |||
* After writing the VRAM data, a new address can be set after 16 CPU cycles or more (>32mclk). | |||
* After writing the VRAM data, another write can be done after 12 CPU cycles or more (>24mclk). | |||
Note that these restrictions only concern the VRAM access, and not the other LSPC registers. | |||
[[Overclocking|Overclocked]] systems often produce video glitches because games are trying to access VRAM too quickly. | |||
==Speed== | |||
* Lower (slow) VRAM must be 120ns or less (3mclk). | |||
* Upper (fast) VRAM must be 35ns or less (1mclk). | |||
[[Category:Video system]] | [[Category:Video system]] |
Latest revision as of 00:42, 15 March 2024
VRAM stands for Video RAM.
The NeoGeo has 68KiB of VRAM split in two: a 64KiB lower zone, and 4KiB higher zone. Contrary to other systems, the VRAM does not contain actual graphics. It is used to store sprite attributes, the fix layer tile map and sprite lists for video rendering.
Access to VRAM is always done through 3 memory mapped registers handled by the LSPC, it does not appear in the 68k address space. Every VRAM address points to a 16-bit word, not a byte.
- REG_VRAMADDR ($3C0000) sets the VRAM address for the next read/write operation.
- REG_VRAMRW ($3C0002) is the data read or to write.
- REG_VRAMMOD ($3C0004) is the signed value automatically added to the VRAM address after a write.
Due to the different access slots used internally for each of the VRAM zones, the address register must be set directly instead of relying on REG_VRAMMOD to cross zones ($0000~$7FFF to/from $8000~$FFFF).
Memory map
Start | End | Words | Zone | Description |
$0000 | $6FFF | 28K | Lower | SCB1 |
$7000 | $74FF | 4K | Fix map | |
$7500 | $7FFF | Extension | ||
$8000 | $81FF | 512 | Upper | SCB2 |
$8200 | $83FF | 512 | SCB3 | |
$8400 | $85FF | 512 | SCB4 | |
$8600 | $867F | 128 | Sprite list for even scanlines | |
$8680 | $86FF | 128 | Sprite list for odd scanlines | |
$8700 | $87FF | 256 | Unused (free) |
Access timing
Even if VRAM can be modified even during active display, some timing restrictions have to be met in order to avoid skipping writes or reading incorrect data. This is because the LSPC can only provide a limited number of access slots for the CPU between the video rendering steps.
SNK imposed minimum waiting times to always be sure that no read or write operation to VRAM will fail:
- After writing the VRAM address, a read will return valid data after 16 CPU cycles or more (>32mclk).
- After writing the VRAM data, a new address can be set after 16 CPU cycles or more (>32mclk).
- After writing the VRAM data, another write can be done after 12 CPU cycles or more (>24mclk).
Note that these restrictions only concern the VRAM access, and not the other LSPC registers.
Overclocked systems often produce video glitches because games are trying to access VRAM too quickly.
Speed
- Lower (slow) VRAM must be 120ns or less (3mclk).
- Upper (fast) VRAM must be 35ns or less (1mclk).