mirror of
https://github.com/mre/mos6502.git
synced 2024-11-25 02:33:26 +00:00
8d506773bf
This should make it easier for beginners to understand how to test this emulator.
12 lines
319 B
INI
12 lines
319 B
INI
MEMORY {
|
|
ZP: start = $0000, size = $0100, type = rw, define = yes;
|
|
RAM: start = $0100, size = $0200, type = rw, define = yes;
|
|
ROM: start = $8000, size = $8000, type = ro;
|
|
}
|
|
|
|
SEGMENTS {
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
DATA: load = RAM, type = rw;
|
|
CODE: load = ROM, type = ro;
|
|
}
|