Load out_reg at the right time
[AtosmChip.git] / tests / cpu_test.cfg
blob7b9337b9d0408e4ce3fe9c86c8cb1e1ba400c396
1 MEMORY {
2     ZP: start = $80, size = $80, type = rw;
3     RAM: start = $300, size = $100, type = rw;
4     ROM: start = $f000, size = $1000, file = %O;
6 SEGMENTS {
7     CODE: load = ROM, type = ro;
8     DATA: load = ROM, type = ro;
9     BSS: load = RAM, type = bss;
10     ZEROPAGE: load = ZP, type = zp;
11     VECTORS: load = ROM, start = $fffa;