From 70a801a43c16fd7a5f61e8d876e5d5c2db48ebe8 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 16 Sep 2026 22:34:56 +0200 Subject: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- config/mmc1.cfg | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 config/mmc1.cfg (limited to 'config/mmc1.cfg') diff --git a/config/mmc1.cfg b/config/mmc1.cfg new file mode 100644 index 0000000..4803993 --- /dev/null +++ b/config/mmc1.cfg @@ -0,0 +1,22 @@ +MEMORY { + # iNES header. + HEADER: start = $0, size = $10, fill = yes; + + # Banked PRG ROM: one for the NES game, the other for the library. + PRG0: start = $8000, size = $4000, fill = yes, fillval = $00, define = yes; + PRG1: start = $C000, size = $3FFA, fill = yes, fillval = $01, define = yes; + + # Hardware Vectors. + ROMV: start = $FFFA, size = $0006, fill = yes; + + # No banking on CHR, we keep it simple. + ROM2: start = $0000, size = $2000, fill = yes, fillval = $02; +} + +SEGMENTS { + HEADER: load = HEADER, type = ro; + FIXED: load = PRG0, type = ro; + LIBTREE: load = PRG1, type = ro; + VECTORS: load = ROMV, type = ro; + CHARS: load = ROM2, type = ro; +} \ No newline at end of file -- cgit v1.2.3