User:Zzo38/Mapper E: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
No edit summary
(userspace mapper drafts should not use mainspace categories)
 
(9 intermediate revisions by one other user not shown)
Line 1: Line 1:
[[Category:Mappers using $4020-$5FFF]][[Category:Multicart mappers]]
<!-- [[Category:Mappers using $4020-$5FFF]][[Category:Multicart mappers]] -->


This is a mapper for multigame cartridges, although it has other features useful for other purposes, too. Compare also [[iNES Mapper 028]].
This is a mapper for multigame cartridges, although it has other features useful for other purposes, too. Compare also [[iNES Mapper 028]].
Line 5: Line 5:
You may be able to make multiple programs using mappers such as:
You may be able to make multiple programs using mappers such as:
* [[NROM]]
* [[NROM]]
* [[CNROM]] (no expansion audio)
* [[CNROM]]
* [[GNROM]]
* [[GNROM]]
* [[UNROM]]
* [[UNROM]]
Line 15: Line 15:
* [[iNES Mapper 038]]
* [[iNES Mapper 038]]
* [[iNES Mapper 070]]
* [[iNES Mapper 070]]
* [[iNES Mapper 078]]
* [[iNES Mapper 087]]
* [[iNES Mapper 087]]
* [[iNES Mapper 092]]
* [[iNES Mapper 089]]
* [[iNES Mapper 094|UN1ROM]]
* [[iNES Mapper 094|UN1ROM]]
* [[iNES Mapper 101]]
* [[iNES Mapper 101]]
* [[iNES Mapper 107]]
* [[iNES Mapper 107]]
* [[iNES Mapper 140]]
* [[iNES Mapper 140]]
* [[iNES Mapper 152]]
* [[iNES Mapper 184]]
* [[iNES Mapper 203]]
* [[iNES Mapper 203]]
* [[iNES Mapper 218]]
* [[iNES Mapper 218]]
* [[Color Dreams]]
* [[Color Dreams]]
* [[iNES Mapper 086|JF-13]]


Depending on ROM/RAM sizes and submapper numbers, it might not be possible to use all combinations.
Depending on ROM/RAM sizes and submapper numbers, it might not be possible to use all combinations.
Expansion audio is not supported. Audio registers in the mapper should not be written to, since they might conflict with others in this mapper.
Some mappers may have bus conflicts, but this one doesn't, so programs relying on bus conflicts will not run properly.


== Registers ==
== Registers ==
Line 45: Line 53:


   7654 3210
   7654 3210
  [BFUE EEMM]
  [BBUE EEMM]
   |||| ||||
   |||| ||||
   |||| ||++- Nametable mirroring controls
   |||| ||++- Nametable mirroring
   |||+-++--- CIRAM enable bits
   |||+-++--- CIRAM enable
   ||+------- User register at $6000-$7FFF
   ||+------- User register at $6000-$7FFF
   |+-------- Fixed bank at $C000-$FFFF
   ++-------- PRG bank mode
  +--------- Bus conflicts


The meaning of nametable mirroring controls is determining what CIRAM A10 is connected to:
The meaning of nametable mirroring controls is determining what CIRAM A10 is connected to:
* 00 = A10
* 00 = PA10
* 01 = A11
* 01 = PA11
* 10 = A12
* 10 = PA12
* 11 = A13
* 11 = PA13 XOR bit4 of user register (bit3 instead, if bit3 of submapper number is set)


The CIRAM enable bits are as follows (if the bit is set, CIRAM is enabled):
The CIRAM enable bits are as follows (if the bit is set, CIRAM is enabled):
Line 63: Line 70:
* bit3 = PPU address $1000-$1FFF
* bit3 = PPU address $1000-$1FFF
* bit4 = PPU address $2000-$3FFF
* bit4 = PPU address $2000-$3FFF
If the control register is exactly $13, and the high four bits of the PRG AND mask are clear, and CHR RAM in the cartridge is enabled, then the CIRAM A10 will be PPU A13 XOR bit4 of the user register.


The user registers at $6000-$7FFF means, if this bit is set, writes to $6000-$FFFF will write the user register; if cleared, the user register is at $8000-$FFFF.
The user registers at $6000-$7FFF means, if this bit is set, writes to $6000-$FFFF will write the user register; if cleared, the user register is at $8000-$FFFF.


The fixed bank bit, if set, causes reads from $C000-$FFFF to be treated as if the user register is set to $FF, although it doesn't cause it to be changed.
The PRG bank mode can be:
 
* 00 = 32K in $8000-$FFFF; let PRG ROM A14 signal from cartridge connector signal
If the bus conflicts bit is set, then there are bus conflicts on registers mapped at $8000-$FFFF. This does not apply to registers mapped at $6000-$7FFF, regardless if this bit is set or not. It is undefined whether or not it applies to registers at $5000-$5FFF.
* 01 = Fixed bank (as if user register = $FF) in $C000-$FFFF, switchable bank in $8000-$BFFF, fix PRG ROM A14 high
* 10 = Fixed bank (as if user register = $FF) in $C000-$FFFF, switchable bank in $8000-$BFFF, fix PRG ROM A14 low
* 11 = Fixed bank (as if user register = $00) in $8000-$BFFF, switchable bank in $C000-$FFFF, fix PRG ROM A14 high


=== User register ===
=== User register ===
Line 84: Line 91:
== PRG RAM ==
== PRG RAM ==
There is 8K PRG RAM at $6000-$7FFF (optional feature). Sometimes the user register is also mapped here, but it might not be. There is no bus conflicts.
There is 8K PRG RAM at $6000-$7FFF (optional feature). Sometimes the user register is also mapped here, but it might not be. There is no bus conflicts.
== Trainer ROM ==
If trainer ROM and PRG RAM are both present, then the $5000-$5FFF area is the trainer ROM (mirrored to fill the entire address range). This may be used to program individual games which are on such a cartridge, so that they can still be tested in the emulator, and then later you can combine them into one without a trainer ROM.


== ROM/RAM sizes ==
== ROM/RAM sizes ==
PRG bankswitching is ROM only, although CHR may be ROM and/or RAM. Subtypes of bankswitching are the high two bits of the submapper number for PRG, and the low two bits for CHR.
PRG bankswitching is ROM only, although CHR may be ROM and/or RAM. Subtypes of bankswitching are bit1 of the submapper number for PRG, and bit0 for CHR.


In the table below, "ROM" and "RAM" means the number of bits needed to select the bank; "-" means the ROM/RAM is not present. The column "sub" means the submapper number.
In the table below, "ROM" and "RAM" means the number of bits needed to select the bank; "-" means the ROM/RAM is not present. The column "sub" means the submapper number.


   ROM  RAM  sub  calc
   ROM  RAM  sub  calc
    -    0    0  No bankswitching
    -    0    1  MIR=[7]
    -    1    0  RAM=[76543210]
    -    2    0  RAM=[7531 6420]
    -    2    1  RAM=[7654 3210]
     0    -    0  No bankswitching
     0    -    0  No bankswitching
     -    0    0  No bankswitching
    0     -     1  SC=[7]
     0    0    0  RAM if any bit set; ROM if all bits clear
    0     0    0  EN=[76543210]
     1    -     0  Bank 1 if any bit set; bank 0 if all bits clear
     0    0     1  Split ROM=[7531] RAM=[6420]
    0    1     0  EN=[7] RAM=[6543210]
    0    1    1  EN=[0] RAM=[7654321]
    1    -    0  ROM=[76543210]
     1    0     0  EN=[75] ROM=[643210]
    1     0     1  Split ROM=[64 210] RAM=[7531]
     2    -    0  ROM=[7531 6420]
     2    -    0  ROM=[7531 6420]
    -    2    0  RAM=[7531 6420]
     2    -    1  ROM=[7654 3210]
     2    -    1  ROM=[7654 3210]
    3    -    0  ROM=[70 642 531]
    3    -    1  ROM=[72 641 530]
     4    -    0  ROM=[73 62 51 40]
     4    -    0  ROM=[73 62 51 40]
    4    -    1  ROM=[75 64 31 20]
    4    0    0  EN=[76] ROM=[3 2 51 40]
    4    0    1  EN=[75] ROM=[63 2 51 40]
    4    1    0  EN=[76] ROM=[3 2 51 40] RAM=[543210]
    4    1    1  EN=[75] ROM=[63 2 51 40] RAM=[743210]
    4    2    0  EN=[76] ROM=[3 2 51 40] RAM=[542 310]
    4    2    1  EN=[76] ROM=[3 2 51 40] RAM=[531 420]
    4    3    0  EN=[76] ROM=[3 2 51 40] RAM=[52 41 30]
    5    -    0  ROM=[7 3 62 51 40]
    5    -    1  ROM=[7 0 64 53 21]
    5    0    0  Special
    6    -    0  ROM=[7 6 5 42 31 0]
    6    -    1  ROM=[7 6 53 42 1 0]
    6    0    0  EN=[6] ROM=[5 4 3 2 1 0] SC=[7]
    7    -    0  ROM=[7 6 5 43 2 1 0]
    7    -    1  ROM=[7 65 4 3 2 1 0]
    7    0    0  EN=[7] ROM=[6 5 4 3 2 1 0]
    7    0    1  EN=[0] ROM=[7 6 5 4 3 2 1]
    7    1    0  EN=[7] ROM=[6 5 4 3 2 1 0] RAM=[6543210]
    7    1    1  EN=[0] ROM=[7 6 5 4 3 2 1] RAM=[7654321]
    7    2    0  EN=[7] ROM=[6 5 4 3 2 1 0] RAM=[641 5320]
    7    2    1  EN=[0] ROM=[7 6 5 4 3 2 1] RAM=[652 7431]
     8    -    0  ROM=[7 6 5 4 3 2 1 0]
     8    -    0  ROM=[7 6 5 4 3 2 1 0]
     7     0     0   bit7 controls RAM. ROM=[6 5 4 3 2 1 0]
     8     -     1   ROM=[7 6 5 4 3 2 1 0] MIR=[3]
    7    0     1  bit0 controls RAM. ROM=[7 6 5 4 3 2 1]
 
Notation in brackets means, any numbers without spaces between means those bits are ORed together; if there are spaces, that designates the separate bits of the bank number. "EN" means if RAM is enabled. "MIR" means the bit0 of the control register will be XOR by this value. "SC" means if nametable mirroring is set to PA12, it instead uses this value for CIRAM A10. "Split" means $0xxx is ROM, $1xxx is RAM, and 4K banks are used.
 
=== Type 5,0,0 ===
This is a special type, acting differently than the above, as follows:
* CHR-RAM is enabled if bit5 of control register is cleared.
* The CHR banks in ROM mode are 4K each.
* ROM bank at $0xxx: <tt>ROM=[p q 7 6 5 4]</tt>
* ROM bank at $1xxx: <tt>ROM=[p q 3 2 1 0]</tt>
* In the above, "p" and "q" are bit1 and bit0 of the PRG bank number.


(TODO)
== Examples ==

Latest revision as of 01:38, 23 March 2018


This is a mapper for multigame cartridges, although it has other features useful for other purposes, too. Compare also iNES Mapper 028.

You may be able to make multiple programs using mappers such as:

Depending on ROM/RAM sizes and submapper numbers, it might not be possible to use all combinations.

Expansion audio is not supported. Audio registers in the mapper should not be written to, since they might conflict with others in this mapper.

Some mappers may have bus conflicts, but this one doesn't, so programs relying on bus conflicts will not run properly.

Registers

Bankswitching masks

[0101 .... .... ..xy]

Writing to these four registers (of eight bits each, regardless of ROM size) controls the bankswitching masks:

  • The "x" bit is 0 for PRG banks or 1 for CHR banks (CHR banks can be ROM or RAM; see below section).
  • The "y" bit is 0 for AND masks or 1 for XOR masks.

This produces four ports visible to the program:

  • $5000: PRG AND mask
  • $5001: PRG XOR mask
  • $5002: CHR AND mask
  • $5003: CHR XOR mask

Control register

[0101 .... .... .1..]

Writing to this register will write the control register (one of the mask registers will also be set at the same time).

 7654 3210
[BBUE EEMM]
 |||| ||||
 |||| ||++- Nametable mirroring
 |||+-++--- CIRAM enable
 ||+------- User register at $6000-$7FFF
 ++-------- PRG bank mode

The meaning of nametable mirroring controls is determining what CIRAM A10 is connected to:

  • 00 = PA10
  • 01 = PA11
  • 10 = PA12
  • 11 = PA13 XOR bit4 of user register (bit3 instead, if bit3 of submapper number is set)

The CIRAM enable bits are as follows (if the bit is set, CIRAM is enabled):

  • bit2 = PPU address $0000-$0FFF
  • bit3 = PPU address $1000-$1FFF
  • bit4 = PPU address $2000-$3FFF

The user registers at $6000-$7FFF means, if this bit is set, writes to $6000-$FFFF will write the user register; if cleared, the user register is at $8000-$FFFF.

The PRG bank mode can be:

  • 00 = 32K in $8000-$FFFF; let PRG ROM A14 signal from cartridge connector signal
  • 01 = Fixed bank (as if user register = $FF) in $C000-$FFFF, switchable bank in $8000-$BFFF, fix PRG ROM A14 high
  • 10 = Fixed bank (as if user register = $FF) in $C000-$FFFF, switchable bank in $8000-$BFFF, fix PRG ROM A14 low
  • 11 = Fixed bank (as if user register = $00) in $8000-$BFFF, switchable bank in $C000-$FFFF, fix PRG ROM A14 high

User register

The user register is mapped at either $6000-$FFFF or $8000-$FFFF. There is no bus conflicts. Calling the registers "pa" (PRG AND), "px" (PRG XOR), "ca" (CHR AND), "cx" (CHR XOR), and "u" (User), the bank selection is as follows:

  • 32K PRG bank at $8000-$FFFF: (u AND pa) XOR px
  • 8K CHR bank at $0000-$1FFF and $2000-$3FFF: (u AND ca) XOR cx

If the ROM is small enough that eight bits are not used, the bits of the result are ORed together to determine what bank to select.

Supervisor ROM

Reading from $5000-$5FFF reads from PRG ROM as if the PRG AND mask and PRG XOR mask are both zero (then it will be the same data at $D000-$DFFF).

PRG RAM

There is 8K PRG RAM at $6000-$7FFF (optional feature). Sometimes the user register is also mapped here, but it might not be. There is no bus conflicts.

Trainer ROM

If trainer ROM and PRG RAM are both present, then the $5000-$5FFF area is the trainer ROM (mirrored to fill the entire address range). This may be used to program individual games which are on such a cartridge, so that they can still be tested in the emulator, and then later you can combine them into one without a trainer ROM.

ROM/RAM sizes

PRG bankswitching is ROM only, although CHR may be ROM and/or RAM. Subtypes of bankswitching are bit1 of the submapper number for PRG, and bit0 for CHR.

In the table below, "ROM" and "RAM" means the number of bits needed to select the bank; "-" means the ROM/RAM is not present. The column "sub" means the submapper number.

 ROM   RAM   sub   calc
   -     0     0   No bankswitching
   -     0     1   MIR=[7]
   -     1     0   RAM=[76543210]
   -     2     0   RAM=[7531 6420]
   -     2     1   RAM=[7654 3210]
   0     -     0   No bankswitching
   0     -     1   SC=[7]
   0     0     0   EN=[76543210]
   0     0     1   Split ROM=[7531] RAM=[6420]
   0     1     0   EN=[7] RAM=[6543210]
   0     1     1   EN=[0] RAM=[7654321]
   1     -     0   ROM=[76543210]
   1     0     0   EN=[75] ROM=[643210]
   1     0     1   Split ROM=[64 210] RAM=[7531]
   2     -     0   ROM=[7531 6420]
   2     -     1   ROM=[7654 3210]
   3     -     0   ROM=[70 642 531]
   3     -     1   ROM=[72 641 530]
   4     -     0   ROM=[73 62 51 40]
   4     -     1   ROM=[75 64 31 20]
   4     0     0   EN=[76] ROM=[3 2 51 40]
   4     0     1   EN=[75] ROM=[63 2 51 40]
   4     1     0   EN=[76] ROM=[3 2 51 40] RAM=[543210]
   4     1     1   EN=[75] ROM=[63 2 51 40] RAM=[743210]
   4     2     0   EN=[76] ROM=[3 2 51 40] RAM=[542 310]
   4     2     1   EN=[76] ROM=[3 2 51 40] RAM=[531 420]
   4     3     0   EN=[76] ROM=[3 2 51 40] RAM=[52 41 30]
   5     -     0   ROM=[7 3 62 51 40]
   5     -     1   ROM=[7 0 64 53 21]
   5     0     0   Special
   6     -     0   ROM=[7 6 5 42 31 0]
   6     -     1   ROM=[7 6 53 42 1 0]
   6     0     0   EN=[6] ROM=[5 4 3 2 1 0] SC=[7]
   7     -     0   ROM=[7 6 5 43 2 1 0]
   7     -     1   ROM=[7 65 4 3 2 1 0]
   7     0     0   EN=[7] ROM=[6 5 4 3 2 1 0]
   7     0     1   EN=[0] ROM=[7 6 5 4 3 2 1]
   7     1     0   EN=[7] ROM=[6 5 4 3 2 1 0] RAM=[6543210]
   7     1     1   EN=[0] ROM=[7 6 5 4 3 2 1] RAM=[7654321]
   7     2     0   EN=[7] ROM=[6 5 4 3 2 1 0] RAM=[641 5320]
   7     2     1   EN=[0] ROM=[7 6 5 4 3 2 1] RAM=[652 7431]
   8     -     0   ROM=[7 6 5 4 3 2 1 0]
   8     -     1   ROM=[7 6 5 4 3 2 1 0] MIR=[3]

Notation in brackets means, any numbers without spaces between means those bits are ORed together; if there are spaces, that designates the separate bits of the bank number. "EN" means if RAM is enabled. "MIR" means the bit0 of the control register will be XOR by this value. "SC" means if nametable mirroring is set to PA12, it instead uses this value for CIRAM A10. "Split" means $0xxx is ROM, $1xxx is RAM, and 4K banks are used.

Type 5,0,0

This is a special type, acting differently than the above, as follows:

  • CHR-RAM is enabled if bit5 of control register is cleared.
  • The CHR banks in ROM mode are 4K each.
  • ROM bank at $0xxx: ROM=[p q 7 6 5 4]
  • ROM bank at $1xxx: ROM=[p q 3 2 1 0]
  • In the above, "p" and "q" are bit1 and bit0 of the PRG bank number.

Examples