build a bogus "ROM image" that can be disassembled, fix the makefile, remove generated files
This commit is contained in:
15
testcode/disasm/image.cfg
Normal file
15
testcode/disasm/image.cfg
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
MEMORY {
|
||||
HEADER: file = %O, start = $0000, size = $0010, fill = yes;
|
||||
BANK00: file = %O, start = $8000, size = $4000, fill = yes;
|
||||
BANK01: file = %O, start = $8000, size = $4000, fill = yes;
|
||||
BANK02: file = %O, start = $8000, size = $4000, fill = yes;
|
||||
FIXED: file = %O, start = $c000, size = $4000, fill = yes;
|
||||
}
|
||||
SEGMENTS {
|
||||
HDR: load = HEADER, type = rw, optional = yes, define = yes;
|
||||
BANK0: load = BANK00, type = rw, optional = yes, define = yes;
|
||||
BANK1: load = BANK01, type = rw, optional = yes, define = yes;
|
||||
BANK2: load = BANK02, type = rw, optional = yes, define = yes;
|
||||
FIX: load = FIXED, type = rw, optional = yes, define = yes;
|
||||
}
|
||||
Reference in New Issue
Block a user