mirror of
https://github.com/cc65/cc65.git
synced 2024-11-12 07:07:19 +00:00
13 lines
310 B
INI
13 lines
310 B
INI
|
MEMORY
|
||
|
{
|
||
|
A: start = 0, size = 8, file = %O, fill = yes, fillval = $33;
|
||
|
B: start = 8, size = 8, file = %O, fill = yes, fillval = $44;
|
||
|
}
|
||
|
SEGMENTS
|
||
|
{
|
||
|
A: load = A, type = ro;
|
||
|
B: load = B, type = ro;
|
||
|
AO: load = A, type = overwrite, start = 6;
|
||
|
BO: load = B, type = overwrite, start = 8+6;
|
||
|
}
|