RAMBO-1: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(→‎Bank select ($8000-$9FFE, even): What the C bit does is invert A12. Also additional warning about PRG mode 1 difference from MMC3)
(118/158 mirroring in a nutshell)
Line 1: Line 1:
[[Category:MMC3-like mappers]]
[[Category:MMC3-like mappers]]
The '''Tengen RAMBO-1''' is an [[:Category:ASIC mappers|ASIC]] [[MMC|mapper]], assigned to [[INES_Mapper_064|iNES mapper 64]]. This mapper is basically Tengen's version of the [[MMC3]], but with some extra features.
The '''Tengen RAMBO-1''' is an [[:Category:ASIC mappers|ASIC]] [[MMC|mapper]], assigned to iNES mappers [[INES_Mapper_064|64]] and [[iNES Mapper 158|158]]. This mapper is basically Tengen's version of the [[MMC3]], but with some extra features.


== Overview ==
== Overview ==
Line 70: Line 70:
         |
         |
         +- [[Mirroring]] (0: vertical; 1: horizontal)
         +- [[Mirroring]] (0: vertical; 1: horizontal)
This applies to mapper 64 only (see Variants below).


=== IRQ latch ($C000-$DFFE, even) ===
=== IRQ latch ($C000-$DFFE, even) ===
Line 103: Line 105:
Writing any value to this register will enable counter interrupts.
Writing any value to this register will enable counter interrupts.


== IRQ Counter Operation ==
== IRQ counter operation ==
The counter can be set to either scanline mode or cpu cycle mode.
The counter can be set to either scanline mode or cpu cycle mode.


Line 122: Line 124:


'''Note:''' When $C001 is written to, it's unknown as to whether reload+1 is written to the counter, or if the counter just takes an extra clock to start counting.
'''Note:''' When $C001 is written to, it's unknown as to whether reload+1 is written to the counter, or if the counter just takes an extra clock to start counting.
== Variants ==
Mapper 64 has mirroring like mapper 4, as described above.
Mapper 158, used for ''Alien Syndrome'', has mirroring like [[iNES Mapper 118|mapper 118]] (TLSROM), where CIRAM A10 is connected to CHR A17, and bit 7 of each CHR bank mapped into PPU $0000-$0FFF controls which page of CIRAM is used for the corresponding nametable in $2000-$2FFF.

Revision as of 02:01, 9 October 2012

The Tengen RAMBO-1 is an ASIC mapper, assigned to iNES mappers 64 and 158. This mapper is basically Tengen's version of the MMC3, but with some extra features.

Overview

  • PRG ROM size: Up to 256 KB
  • PRG ROM bank size: 8 KB
  • PRG RAM: Unknown
  • CHR capacity: Up to 256 KB ROM
  • CHR bank size: All 1 KB, or 2 2KB and 4 1KB
  • Nametable mirroring: Controlled by mapper
  • Subject to bus conflicts: No

Banks

  • CPU $8000-$9FFF: 8 KB switchable PRG ROM bank
  • CPU $A000-$BFFF: 8 KB switchable PRG ROM bank
  • CPU $C000-$DFFF: 8 KB switchable PRG ROM bank
  • CPU $E000-$FFFF: 8 KB PRG ROM bank, fixed to the last bank
  • PPU -- Three selectable configurations:
    1. 1 KB switchable CHR banks at $0000, $0400, $0800, $0C00, $1000, $1400, $1800, $1C00
    2. 2 KB switchable CHR banks at $0000, $0800; 1 KB switchable CHR banks at $1000, $1400, $1800, $1C00
    3. 2 KB switchable CHR banks at $1000, $1800; 1 KB switchable CHR banks at $0000, $0400, $0800, $0C00

Registers

The RAMBO-1 has 4 pairs of registers at $8000-$9FFF, $A000-$BFFF, $C000-$DFFF, and $E000-$FFFF - even addresses ($8000, $8002, etc.) select the low register and odd addresses ($8001, $8003, etc.) select the high register in each pair.

Bank select ($8000-$9FFE, even)

7  bit  0
---- ----
CPKx RRRR
|||  ||||
|||  ++++- Specify which bank register to update on next write to Bank Data register
|||        0: Select 2 (K=0) or 1 (K=1) KB CHR bank at PPU $0000 (or $1000);
|||        1: Select 2 (K=0) or 1 (K=1) KB CHR bank at PPU $0800 (or $1800);
|||        2: Select 1 KB CHR bank at PPU $1000-$13FF (or $0000-$03FF);
|||        3: Select 1 KB CHR bank at PPU $1400-$17FF (or $0400-$07FF);
|||        4: Select 1 KB CHR bank at PPU $1800-$1BFF (or $0800-$0BFF);
|||        5: Select 1 KB CHR bank at PPU $1C00-$1FFF (or $0C00-$0FFF);
|||        6: Select 8 KB PRG ROM bank at $8000-$9FFF (or $A000-$BFFF);
|||        7: Select 8 KB PRG ROM bank at $A000-$BFFF (or $C000-$DFFF);
|||        8: If K=1, Select 1 KB CHR bank at PPU $0400 (or $1400);
|||        9: If K=1, Select 1 KB CHR bank at PPU $0C00 (or $1C00);
|||        F: Select 8 KB PRG ROM bank at $C000-$DFFF (or $8000-$9FFF);
||+------- Full 1KB CHR bank mode (0: two 2KB banks at $0000-$0FFF (or $1000-$1FFF),
||                                 1: four 1KB banks at $0000-$0FFF (or $1000-$1FFF))
|+-------- PRG ROM bank mode (0: $8000-$9FFF uses bank selected with R:6,
|                                $A000-$BFFF uses bank selected with R:7,
|                                $C000-$DFFF uses bank selected with R:F;
|                             1: $8000-$9FFF uses bank selected with R:F,
|                                $A000-$BFFF uses bank selected with R:6, -- NOT 7
|                                $C000-$DFFF uses bank selected with R:7) -- NOT 6
+--------- CHR A12 inversion (0: two 2 KB banks (or four 1 KB banks) at $0000-$0FFF,
                                 four 1 KB banks at $1000-$1FFF;
                              1: two 2 KB banks (or four 1 KB banks) at $1000-$1FFF,
                                 four 1 KB banks at $0000-$0FFF)

In PRG ROM bank mode 1, the functions of registers 6 and 7 are backward compared to the corresponding mode of MMC3.

Bank data ($8001-$9FFF, odd)

7  bit  0
---- ----
DDDD DDDD
|||| ||||
++++-++++- New bank value, based on last value written to Bank select register (mentioned above)

Mirroring ($A000-$BFFE, even)

7  bit  0
---- ----
xxxx xxxM
        |
        +- Mirroring (0: vertical; 1: horizontal)

This applies to mapper 64 only (see Variants below).

IRQ latch ($C000-$DFFE, even)

7  bit  0
---- ----
DDDD DDDD
|||| ||||
++++-++++- IRQ latch value

This register specifies the IRQ counter reload value. When the IRQ counter is zero (or a reload is requested through $C001), this value will be copied into the IRQ counter at the end of the current scanline.

IRQ mode select / reload ($C001-$DFFF, odd)

7  bit  0
---- ----
xxxx xxxM
        |
        +- IRQ mode select (0: Scanline Mode, 1: CPU Cycle Mode)

Writing to this register also clears the IRQ counter so that it will be reloaded at next clock, or the next scanline, depending on the selected mode. This also resets the prescaler in cycle mode, so the next clock will occur 4 cycles later.

IRQ acknowledge / disable ($E000-$FFFE, even)

7  bit  0
---- ----
xxxx xxxx

Writing any value to this register will disable counter interrupts AND acknowledge any pending interrupts.

IRQ enable ($E001-$FFFF, odd)

7  bit  0
---- ----
xxxx xxxx

Writing any value to this register will enable counter interrupts.

IRQ counter operation

The counter can be set to either scanline mode or cpu cycle mode.

In scanline mode, the counter is clocked using the same method the MMC3 uses, and follows the same restrictions. However, the actual interrupt seems to trigger 5 pixels later, compared to the MMC3.

In CPU cycle mode, the counter is clocked every 4 CPU cycles. Again, the actual interrupt seems to trigger 5 pixels later than when they're fired.

Whichever method is being used, the counter behaves the following way:

  • IF $C001 was written to after previous clock
    • reload IRQ counter with IRQ Reload value PLUS ONE (see note)
  • ELSE IF IRQ counter is 0
    • reload IRQ counter with IRQ Reload value
  • ELSE
    • Decrement IRQ counter by 1
    • IF IRQ counter is now 0 AND IRQs are enabled
      • trigger IRQ (which takes effect 5 pixels later)

Note: When $C001 is written to, it's unknown as to whether reload+1 is written to the counter, or if the counter just takes an extra clock to start counting.

Variants

Mapper 64 has mirroring like mapper 4, as described above. Mapper 158, used for Alien Syndrome, has mirroring like mapper 118 (TLSROM), where CIRAM A10 is connected to CHR A17, and bit 7 of each CHR bank mapped into PPU $0000-$0FFF controls which page of CIRAM is used for the corresponding nametable in $2000-$2FFF.