GTROM: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
No edit summary
(try to make it clearer that the CHR and NT RAM regions are disjoint. and make slightly less loquacious)
 
(20 intermediate revisions by 7 users not shown)
Line 15: Line 15:


'''Cheapocabra''' or '''GTROM''' is a self-flashable cartridge board intended for homebrew releases with its own unique mapper assigned to '''iNES Mapper 111'''. The board and mapper were designed by Membler Industries which also manufactures the cartridges.
'''Cheapocabra''' or '''GTROM''' is a self-flashable cartridge board intended for homebrew releases with its own unique mapper assigned to '''iNES Mapper 111'''. The board and mapper were designed by Membler Industries which also manufactures the cartridges.
Releases:
* ''Anguna: Scourge of the Goblin King''
* ''Candelabra Estoscerro'' (also available as [[UNROM512]])
* ''The Incident''
* ''NEScape''
* ''Spook-o-tron''


== Overview ==
== Overview ==
The Cheapocabra board and mapper were developed in 2015 by Memblers to meet the needs of the lower end of the homebrew cartridge market. This includes games that would have historically used an [[NROM]] board as well as other simpler boards which provide some kind of bank switching but lacked more advanced features like IRQs. The underlying philosophy is that stocking larger numbers of a single board design allows for lower costs by economies of scale when compared to stocking smaller individual quantities of a suite of lower end boards all with similar capabilities. This is especially true when it is considered that using smaller flash chips and removing mapper logic does not significantly reduce the cost of manufacturing a board.
The Cheapocabra board and mapper were developed in 2015 by Memblers to meet the needs of the lower end of the homebrew cartridge market. This includes games that would have historically used an [[NROM]] board as well as other simpler boards which provide some kind of bank switching but lacked more advanced features like IRQs. The underlying philosophy is that stocking larger numbers of a single board design allows for lower costs by economies of scale when compared to stocking smaller individual quantities of a suite of lower end boards all with similar capabilities.


The name Cheapocabra is a play on [https://en.wikipedia.org/wiki/Chupacabra Chupacabra], a creature from American folklore, where the similar sounding first syllable is replaced with the word "cheap" to indicate the intended low cost of the hardware. The GTROM moniker, meaning "Goat ROM," is derived directly from this as Chupacabra translates literally as "goat-sucker" and the Chupacabras of legend are known for attacking goats and other livestock.
The name Cheapocabra is a play on [[wikipedia:Chupacabra|Chupacabra]], a creature from American folklore, where the similar sounding first syllable is replaced with the word "cheap" to indicate the intended low cost of the hardware. The GTROM moniker, meaning "Goat ROM," is derived directly from this as Chupacabra translates literally as "goat-sucker" and the Chupacabras of legend are known for attacking goats and other livestock.


== Register ==
== Registers ==
A single, write-only, 8-bit register controls everything on the board. Since the register combines multiple controls into a single byte it is not possible to update the bit fields for one function without writing the value for all of them. If a program needs to update a particular field without affecting the others then its best to always keep a copy of the register value in RAM. The RAM value can be read and surgically manipulated as needed and then just copied to the register after each update or a group of updates is made.
=== Bank select ($5000-$5FFF, others) ===


The register is mapped to the CPU addresses '''$5000-$5FFF''' and '''$7000-$7FFF''' and writing a byte to any of these addresses all have the same result. Programs most commonly use '''$5000''' for writing to the register but any of the others work equally well.
The register is mapped to the CPU addresses '''$5000-$5FFF''' and '''$7000-$7FFF''' and writing a byte to any of these addresses all have the same result. Programs most commonly use '''$5000''' for writing to the register but any of the others work equally well. Note that reading from the register effectively writes the value of open bus, so bitwise manipulation will require keeping a copy of the mapper register's value in RAM.


  7  bit  0
  7  bit  0
Line 44: Line 51:
512 KB of flash memory is mapped to a 32 KB window located at '''$8000-$FFFF''' in CPU address space providing the PRG ROM for the cartridge. The full 512 KB is divided into sixteen 32 KB pages which can be selected by writing the index number of the desired page to the lower nybble of the control register located at $5000. No portion of the bank is fixed and no portion of the pages overlap and so switching pages results in all the addresses in the bank being redirected to another unique location on the flash chip.
512 KB of flash memory is mapped to a 32 KB window located at '''$8000-$FFFF''' in CPU address space providing the PRG ROM for the cartridge. The full 512 KB is divided into sixteen 32 KB pages which can be selected by writing the index number of the desired page to the lower nybble of the control register located at $5000. No portion of the bank is fixed and no portion of the pages overlap and so switching pages results in all the addresses in the bank being redirected to another unique location on the flash chip.


The lack of a fixed bank may make development more difficult since care must be taken to ensure that the next instruction of the program to execute after the register update will be located at the next address in the page that is being switched in. If the new page contains something else at that address then the program will likely crash since the CPU will still proceed to execute it anyway. The simplest way to handle this is to create a faux fixed bank by duplicating the same data at the same offset within all 16 pages. A common approach is to imitate a [[UxROM]] style layout by duplicating the same 16 KB of data at $C000-$FFFF but this effectively reduces the size of the ROM to 272 KB (16 KB * 16 pages + 16 KB fixed). Memblers has released a command line utility called the [http://forums.nesdev.org/viewtopic.php?f=2&t=18035 Fixed Bank Creator] that can be used to duplicate data across multiples pages in a variety of configurations.
The lack of a fixed bank may make development more difficult since care must be taken to ensure that the next instruction of the program to execute after the register update will be located at the next address in the page that is being switched in. If the new page contains something else at that address then the program will likely crash since the CPU will still proceed to execute it anyway. The simplest way to handle this is to create a faux fixed bank by duplicating the same data at the same offset within all 16 pages. A common approach is to imitate a [[UxROM]] style layout by duplicating the same 16 KB of data at $C000-$FFFF but this effectively reduces the size of the ROM to 272 KB (16 KB * 16 pages + 16 KB fixed). Memblers has released a command line utility called the [//forums.nesdev.org/viewtopic.php?f=2&t=18035 Fixed Bank Creator] that can be used to duplicate data across multiples pages in a variety of configurations.


==== Self-flashing ====
==== Self-flashing ====
Line 50: Line 57:
Like [[UNROM 512]], GTROM uses a SST39SF040 flash chip as the PRG ROM storage device. Both of these mappers lack PRG RAM for game saves but the configuration of both boards make it possible to erase and rewrite sections of the chip using NES software thus allowing games to store saved games and other variable information on the "ROM" chip. The saved data actually becomes part of the ROM image since its just stored alongside the rest of the program and game data on the flash chip.
Like [[UNROM 512]], GTROM uses a SST39SF040 flash chip as the PRG ROM storage device. Both of these mappers lack PRG RAM for game saves but the configuration of both boards make it possible to erase and rewrite sections of the chip using NES software thus allowing games to store saved games and other variable information on the "ROM" chip. The saved data actually becomes part of the ROM image since its just stored alongside the rest of the program and game data on the flash chip.


Rewriting is accomplished by writing specific sequences of bytes to specific addresses on the chip to unlock and perform a particular action such as erasing a sector or writing a byte value. The particular sequences are documented on the [http://www.microchip.com/wwwproducts/Devices.aspx?product=SST39SF040 data sheet] for the chip. The addresses given on the data sheet are in addresses on the chip and thus '''5555h''' corresponds to CPU '''$D555''' and '''2AAAh''' corresponds to CPU '''$AAAA''' regardless of the PRG page selected.
Rewriting is accomplished by writing specific sequences of bytes to specific addresses on the chip to unlock and perform a particular action such as erasing a sector or writing a byte value. The particular sequences are documented on the [//www.microchip.com/wwwproducts/Devices.aspx?product=SST39SF040 data sheet] for the chip. The addresses given on the data sheet are in addresses on the chip and thus '''5555h''' corresponds to CPU '''$D555''' and '''2AAAh''' corresponds to CPU '''$AAAA''' regardless of the PRG page selected.


NES programs must execute from RAM while erasing and writing to the chip since the CPU fetching instructions from it would interfere with the command sequence. Writing data to a sector is accomplished by first erasing the sector and then writing each byte in turn which requires writing the appropriate command sequence to the chip each time. This would be similar to the [[Media:Flash.asm.txt|example code]] for UNROM except that the bank switches and addresses would need to be adjusted to match GTROM's requirements.
NES programs must execute from RAM while erasing and writing to the chip since the CPU fetching instructions from it would interfere with the command sequence. Writing data to a sector is accomplished by first erasing the sector and then writing each byte in turn which requires writing the appropriate command sequence to the chip each time. This would be similar to the [[Media:Flash.asm.txt|example code]] for UNROM except that the bank switches and addresses would need to be adjusted to match GTROM's requirements.


=== CHR RAM (PPU $0000-$1FFF) ===
=== PPU RAM ===


Both [[PPU pattern tables|pattern tables]], '''$0000-$1FFF''' in PPU address space, are wired to 16 KB of CHR RAM split into two swapable 8 KB pages. The page is selected by setting or clearing bit 4 of the control register. Both pattern tables can be independently populated by first selecting the desired page and then filling the memory through the serial interface using the [[CHR ROM vs. CHR RAM#Switching to CHR RAM|normal procedure]]. Once both pages in the bank are populated they can be instantly swaped between the two different sets of patterns by updating the control register like any other paged bank.
The board contains a 32KiB RAM. This RAM is always enabled, and the NES's internal 2KiB CIRAM is always disabled.
 
==== CHR RAM (PPU $0000-$1FFF) ====
 
The [[PPU pattern tables|pattern tables]] can select between the first two 8KiB of the PPU RAM, vaguely like [[iNES Mapper 087|mapper 87]]. The page is selected by setting or clearing bit 4 of the control register.


All of the [[CHR ROM vs. CHR RAM|normal advantages]] of CHR RAM over CHR ROM apply to this board such as being able to dynamical update tiles between frames for animations and other effects. Since the RAM bank is paged it also has the same kind of "flip book" capabilities often associated with CHR ROM.
All of the [[CHR ROM vs. CHR RAM|normal advantages]] of CHR RAM over CHR ROM apply to this board such as being able to dynamical update tiles between frames for animations and other effects. Since the RAM bank is paged it also has the same kind of "flip book" capabilities often associated with CHR ROM.


=== VRAM (PPU $2000-$3EFF) ===
==== VRAM (PPU $2000-$3EFF) ====


GTROM maps the [[PPU_nametables|nametable]] addresses, '''$2000-$3EFF''' in PPU address space, directly to nearly 16 KB of on-board RAM split into two swappable pages (each just shy of 8 KB). This provides unique memory in both pages for all 4 nametables. This means the mapper always uses 4-screen [[Mirroring|mirroring]] which eliminates the need for a soldered jumper or a physical or software switch to control the mirroring because none of the nametables are mirrored in this configuration. This also means that games can scroll freely in either or both directions simultaneously because there is always a full two screens worth of tiles for both directions.  
The [[PPU_nametables|nametable]]s can select between the last two 8KiB of the PPU RAM. This provides unique memory in both banks for all 4 nametables. This means the mapper always uses 4-screen [[Mirroring|mirroring]] and can neither use nor benefit from a switch to control the nametable arrangement.


Use bit 5 of the control register to select the specific page. As with the CHR RAM, either page can be selected and then the data can be read into the page through the serial interface like normal. Once both pages are populated they can be instantly flipped back and forth by updating the control register.
Use bit 5 of the control register to select the specific page.  


==== Bonus RAM ====
===== Bonus RAM =====


The nametable RAM on the board covers the full nametable [[PPU_memory_map|address range]] extending all the way to $3EFF. Each of the four screens only use one kilobyte and so table four ends at $2FFF. Normally, $3000-$3EFF is just a mirror of $2000-$2EFF and is not usually useful since the last 256 bytes of the nametable 4 mirror are cut-off because [[PPU_palettes|palette RAM]] is mapped to $3F00-$3FFF (this is also the reason the bank window is slightly less than 8 KB).
The nametable RAM on the board covers not only the full nametable [[PPU_memory_map|address range]], but also the next 4KiB. Normally, PPU $3000-$3EFF is just a mirror of $2000-$2EFF and so is not usually useful.


On this board these addresses are not mirrored and instead are wired to real, independent addresses on the RAM chip. Since these PPU addresses aren't actually used by the system this creates some additional RAM space that can be used for general purposes. Both pages in this bank contain their own copy of this bonus RAM so the total is almost 8 KB split evenly across the two pages.
On this board these addresses are not mirrored and instead are wired to real, independent addresses on the RAM chip. Since these PPU addresses aren't actually used by the system this creates some additional RAM space that can be used for general purposes. Both pages in this bank contain their own copy of this bonus RAM so the total is almost 8 KB split evenly across the two pages.


Since this is mapped to PPU addresses and not to CPU addresses the only way to read or write it is through the [[PPU_registers#PPUADDR|PPUADDR]] and [[PPU_registers#PPUDATA|PPUDATA]] registers. This complicates the use of the memory since the serial interface is slower and programming it adds complexity when compared to working with RAM wired directly to the CPU. Additionally, as with all PPU memory, the bonus RAM generally cannot be accessed while the PPU is rendering (since the PPU is actively using the bus) which may limit the usefulness of the added RAM.
However, the last 256 bytes are unwriteable because [[PPU_palettes|palette RAM]] is mapped to $3F00-$3FFF.


== Emulator Support ==
== Emulator Support ==
Line 78: Line 89:


=== Mesen ===
=== Mesen ===
[https://www.mesen.ca/ Mesen] added full support for GTROM as of [https://www.mesen.ca/#Changelog version 0.9.0] (released May 13, 2017).
[//www.mesen.ca/ Mesen] added full support for GTROM as of [//www.mesen.ca/#Changelog version 0.9.0] (released May 13, 2017).


=== FCEUX ===
=== FCEUX ===
The 2.2.3 release of FCEUX does not support GTROM but the current [http://www.fceux.com/web/download.html interim build] does. Additionally, a [http://membler-industries.com/nes/fceux-r3293.zip custom build] with GTROM support is available on Memblers' homepage.
Since version 2.3.0 FCEUX has officially supported GTROM.


Neither implementation supports the "bonus RAM" at PPU $3000-$3EFF because the architecture of the emulator makes implementing this infeasible. The [//github.com/TASVideos/fceux/blob/master/src/boards/cheapocabra.cpp source code] is available on GitHub.
Prior to that release, it had been available in interim builds for several years. On Memblers' homepage is [//membler-industries.com/nes/fceux-r3293.zip an interim build] with GTROM.
 
This implementation does not support the "bonus RAM" at PPU $3000-$3EFF because the architecture of the emulator makes implementing this infeasible. The [//github.com/TASVideos/fceux/blob/master/src/boards/cheapocabra.cpp source code] is available on GitHub.


=== PowerPak ===
=== PowerPak ===
[[PowerPak]] has had a [//forums.nesdev.org/viewtopic.php?f=9&t=16631 3rd-party mapper] made to support GTROM. The current implementation supports bonus RAM but does not support self-flashing.
[[PowerPak]] has had a [//forums.nesdev.org/viewtopic.php?f=9&t=16631 3rd-party mapper] made to support GTROM. The current implementation supports bonus RAM but does not support self-flashing.
=== EverDrive ===
[[Everdrive N8]] has had a [//forums.nesdev.org/viewtopic.php?f=9&t=18841 3rd-party mapper] made to support GTROM, based on the PowerPak mapper. As such, the current implementation supports bonus RAM but does not support self-flashing.


== Hardware Teardown ==
== Hardware Teardown ==
The specific hardware on this board is a [[74377]], a [[7402]], and a [[7410]].
The specific hardware on this board is a [[74377]], a [[7402]], and a [[7410]].


Memblers shared the schematic: https://forums.nesdev.org/viewtopic.php?p=226364#p226364
Memblers shared the [//forums.nesdev.org/viewtopic.php?p=226364#p226364 schematic here].


The functions evaluated by the logic include:
The functions evaluated by the logic include:
Line 99: Line 115:


Note that reads from the latch will write the value of open bus to the latch, which includes dummy reads from indexed addressing.
Note that reads from the latch will write the value of open bus to the latch, which includes dummy reads from indexed addressing.
== Variations ==
=== GTMP3 ===
A new variant of this mapper known as [//docs.google.com/document/d/108LuUaH3KgHwvCuID_jHYiMAcHVZ-3EHLE9EOahEzTk GTMP3] was introduced in October 2019. The new version adds an audio expansion and is mostly backward compatible with the original. Memblers intends to continue to make the original GTROM board available for purchase since it's still less expensive to produce than the enhanced MP3 version.
This adds a YX5200 coprocessor which can be instructed by NES code to play MP3 or WAV audio stored on a microSD card. It is controlled using asynchronous serial emitted on bit 7 of the mapper's register, instead of the green LED. Code designed to run from a classic GTROM board should otherwise be fully compatible with GTMP3. [//github.com/Memblers/mp3player Example code] is available on GitHub.
=== Famiclone-compatible mode ===
Many Famiclones don't permit the cartridge to replace the nametables, sometimes even using the relevant pins to detect cartridge insertion and replace the built-in games. A set of solder jumpers are available to reconfigure this to instead act like a self-flashable [[GNROM]] board with four 8KB banks of CHR RAM and fixed nametable mirroring. Nothing has yet been released using this mode, and when found it should probably be allocated a new mapper number.
=== Ninja Ryukenden Chinese Fan Translation ===
Prior to the introduction of GTROM, Mapper 111 was assigned to a Chinese Fan Translation of Ninja Ryukenden (Japanese Ninja Gaiden).  This translation uses a non-serialized version of MMC1 and supports 256KiB of CHR-ROM, whereas the official MMC1 is limited to 128KiB.  This assignment can coexist with GTROM provided the emulator recognizes that the translation uses CHR-ROM and therefore must emulate the MMC1 variant instead of GTROM hardware.


== See also ==
== See also ==
* [http://forums.nesdev.org/viewtopic.php?p=146039 Membler Industries in 2015] - forum post describing the board.
* [http://forums.nesdev.org/viewtopic.php?p=146039 Membler Industries in 2015] - forum post describing the board.
* [[UNROM 512]] - A very similar homebrew mapper, but with a 16k + fixed PRG configuration.
* [https://bacteriamage.wordpress.com/2019/03/01/how-i-learned-to-play-the-incident-and-other-gtrom-favorites-sans-the-cartridge/ How I learned to play The Incident and other GTROM favorites sans the cartridge] - Blog post describing patching some popular GTROM games to run from other mappers ([https://bacteriamage.wordpress.com/2019/03/10/patch-scripts-released-for-the-incident-scramble-and-khan-4-in-1/ patches])


{{DEFAULTSORT:111}}
[[Category:iNES Mappers]]
[[Category:iNES Mappers]]
[[Category:GNROM-like mappers]]
[[Category:GNROM-like mappers]]
[[Category:Mappers using $4020-$5FFF]]
[[Category:Mappers using $4020-$5FFF]]
[[Category:Mappers with CHR RAM]]
[[Category:Mappers with flash save]]

Latest revision as of 14:22, 20 January 2024


Cheapocabra (GTROM)
Company Membler Industries
Boards GTROM
PRG ROM capacity 512K
PRG ROM window 32K
PRG RAM capacity None
CHR capacity 16K
CHR window 8K
Nametable mirroring 4 fixed
Bus conflicts No
IRQ No
Audio No
iNES mappers 111


Cheapocabra or GTROM is a self-flashable cartridge board intended for homebrew releases with its own unique mapper assigned to iNES Mapper 111. The board and mapper were designed by Membler Industries which also manufactures the cartridges.

Releases:

  • Anguna: Scourge of the Goblin King
  • Candelabra Estoscerro (also available as UNROM512)
  • The Incident
  • NEScape
  • Spook-o-tron

Overview

The Cheapocabra board and mapper were developed in 2015 by Memblers to meet the needs of the lower end of the homebrew cartridge market. This includes games that would have historically used an NROM board as well as other simpler boards which provide some kind of bank switching but lacked more advanced features like IRQs. The underlying philosophy is that stocking larger numbers of a single board design allows for lower costs by economies of scale when compared to stocking smaller individual quantities of a suite of lower end boards all with similar capabilities.

The name Cheapocabra is a play on Chupacabra, a creature from American folklore, where the similar sounding first syllable is replaced with the word "cheap" to indicate the intended low cost of the hardware. The GTROM moniker, meaning "Goat ROM," is derived directly from this as Chupacabra translates literally as "goat-sucker" and the Chupacabras of legend are known for attacking goats and other livestock.

Registers

Bank select ($5000-$5FFF, others)

The register is mapped to the CPU addresses $5000-$5FFF and $7000-$7FFF and writing a byte to any of these addresses all have the same result. Programs most commonly use $5000 for writing to the register but any of the others work equally well. Note that reading from the register effectively writes the value of open bus, so bitwise manipulation will require keeping a copy of the mapper register's value in RAM.

7  bit  0
---- ----
GRNC PPPP
|||| ||||
|||| ++++- Select 32 KB PRG ROM bank for CPU $8000-$FFFF
|||+------ Select 8 KB CHR RAM bank for PPU $0000-$1FFF
||+------- Select 8 KB nametable for PPU $2000-$3EFF
|+-------- Red LED - 0=On; 1=Off
+--------- Green LED - 0=On; 1=Off

There are two LEDs on the board; one red and one green. They can be independently turned on and off using the register at any time. The LEDs are potentially useful as a simple means of communicating debug information or some kind of indicator for the player. Another approach is to turn the light off during processing and on during idle resulting in the brightness of the light being a rough indicator of available CPU time.

Banks

PRG ROM (CPU $8000-$FFFF)

512 KB of flash memory is mapped to a 32 KB window located at $8000-$FFFF in CPU address space providing the PRG ROM for the cartridge. The full 512 KB is divided into sixteen 32 KB pages which can be selected by writing the index number of the desired page to the lower nybble of the control register located at $5000. No portion of the bank is fixed and no portion of the pages overlap and so switching pages results in all the addresses in the bank being redirected to another unique location on the flash chip.

The lack of a fixed bank may make development more difficult since care must be taken to ensure that the next instruction of the program to execute after the register update will be located at the next address in the page that is being switched in. If the new page contains something else at that address then the program will likely crash since the CPU will still proceed to execute it anyway. The simplest way to handle this is to create a faux fixed bank by duplicating the same data at the same offset within all 16 pages. A common approach is to imitate a UxROM style layout by duplicating the same 16 KB of data at $C000-$FFFF but this effectively reduces the size of the ROM to 272 KB (16 KB * 16 pages + 16 KB fixed). Memblers has released a command line utility called the Fixed Bank Creator that can be used to duplicate data across multiples pages in a variety of configurations.

Self-flashing

Like UNROM 512, GTROM uses a SST39SF040 flash chip as the PRG ROM storage device. Both of these mappers lack PRG RAM for game saves but the configuration of both boards make it possible to erase and rewrite sections of the chip using NES software thus allowing games to store saved games and other variable information on the "ROM" chip. The saved data actually becomes part of the ROM image since its just stored alongside the rest of the program and game data on the flash chip.

Rewriting is accomplished by writing specific sequences of bytes to specific addresses on the chip to unlock and perform a particular action such as erasing a sector or writing a byte value. The particular sequences are documented on the data sheet for the chip. The addresses given on the data sheet are in addresses on the chip and thus 5555h corresponds to CPU $D555 and 2AAAh corresponds to CPU $AAAA regardless of the PRG page selected.

NES programs must execute from RAM while erasing and writing to the chip since the CPU fetching instructions from it would interfere with the command sequence. Writing data to a sector is accomplished by first erasing the sector and then writing each byte in turn which requires writing the appropriate command sequence to the chip each time. This would be similar to the example code for UNROM except that the bank switches and addresses would need to be adjusted to match GTROM's requirements.

PPU RAM

The board contains a 32KiB RAM. This RAM is always enabled, and the NES's internal 2KiB CIRAM is always disabled.

CHR RAM (PPU $0000-$1FFF)

The pattern tables can select between the first two 8KiB of the PPU RAM, vaguely like mapper 87. The page is selected by setting or clearing bit 4 of the control register.

All of the normal advantages of CHR RAM over CHR ROM apply to this board such as being able to dynamical update tiles between frames for animations and other effects. Since the RAM bank is paged it also has the same kind of "flip book" capabilities often associated with CHR ROM.

VRAM (PPU $2000-$3EFF)

The nametables can select between the last two 8KiB of the PPU RAM. This provides unique memory in both banks for all 4 nametables. This means the mapper always uses 4-screen mirroring and can neither use nor benefit from a switch to control the nametable arrangement.

Use bit 5 of the control register to select the specific page.

Bonus RAM

The nametable RAM on the board covers not only the full nametable address range, but also the next 4KiB. Normally, PPU $3000-$3EFF is just a mirror of $2000-$2EFF and so is not usually useful.

On this board these addresses are not mirrored and instead are wired to real, independent addresses on the RAM chip. Since these PPU addresses aren't actually used by the system this creates some additional RAM space that can be used for general purposes. Both pages in this bank contain their own copy of this bonus RAM so the total is almost 8 KB split evenly across the two pages.

However, the last 256 bytes are unwriteable because palette RAM is mapped to $3F00-$3FFF.

Emulator Support

Emulator support for this mapper is currently spotty. Most were designed before GTROM and have been slow to add support but this may be a chicken-or-the-egg problem with the current lack of many freely distributed ROM images that use the mapper. Some of the implementations that are available are incomplete since they commonly lack support for the bonus RAM or self-flashing capabilities. The LED lights on the board are universally unsupported at this time.

Mesen

Mesen added full support for GTROM as of version 0.9.0 (released May 13, 2017).

FCEUX

Since version 2.3.0 FCEUX has officially supported GTROM.

Prior to that release, it had been available in interim builds for several years. On Memblers' homepage is an interim build with GTROM.

This implementation does not support the "bonus RAM" at PPU $3000-$3EFF because the architecture of the emulator makes implementing this infeasible. The source code is available on GitHub.

PowerPak

PowerPak has had a 3rd-party mapper made to support GTROM. The current implementation supports bonus RAM but does not support self-flashing.

EverDrive

Everdrive N8 has had a 3rd-party mapper made to support GTROM, based on the PowerPak mapper. As such, the current implementation supports bonus RAM but does not support self-flashing.

Hardware Teardown

The specific hardware on this board is a 74377, a 7402, and a 7410.

Memblers shared the schematic here.

The functions evaluated by the logic include:

  • CHRRAMA14 = N if (PPUA13==1) otherwise C
  • PRGROM/OE = NOT(R/W)
  • Latch on falling edge of M2, if /ROMSEL, A14, and A12 all high.

Note that reads from the latch will write the value of open bus to the latch, which includes dummy reads from indexed addressing.

Variations

GTMP3

A new variant of this mapper known as GTMP3 was introduced in October 2019. The new version adds an audio expansion and is mostly backward compatible with the original. Memblers intends to continue to make the original GTROM board available for purchase since it's still less expensive to produce than the enhanced MP3 version.

This adds a YX5200 coprocessor which can be instructed by NES code to play MP3 or WAV audio stored on a microSD card. It is controlled using asynchronous serial emitted on bit 7 of the mapper's register, instead of the green LED. Code designed to run from a classic GTROM board should otherwise be fully compatible with GTMP3. Example code is available on GitHub.

Famiclone-compatible mode

Many Famiclones don't permit the cartridge to replace the nametables, sometimes even using the relevant pins to detect cartridge insertion and replace the built-in games. A set of solder jumpers are available to reconfigure this to instead act like a self-flashable GNROM board with four 8KB banks of CHR RAM and fixed nametable mirroring. Nothing has yet been released using this mode, and when found it should probably be allocated a new mapper number.

Ninja Ryukenden Chinese Fan Translation

Prior to the introduction of GTROM, Mapper 111 was assigned to a Chinese Fan Translation of Ninja Ryukenden (Japanese Ninja Gaiden). This translation uses a non-serialized version of MMC1 and supports 256KiB of CHR-ROM, whereas the official MMC1 is limited to 128KiB. This assignment can coexist with GTROM provided the emulator recognizes that the translation uses CHR-ROM and therefore must emulate the MMC1 variant instead of GTROM hardware.

See also