mirror of
https://github.com/cc65/cc65.git
synced 2025-02-28 20:29:46 +00:00
adjust size of SRPREP to account for 1K aligned character generator
(not page aligned as I thought before)
This commit is contained in:
parent
4a0bdf871b
commit
21e6654524
@ -21,7 +21,7 @@ MEMORY {
|
|||||||
|
|
||||||
# "shadow RAM preparation" load chunk
|
# "shadow RAM preparation" load chunk
|
||||||
SRPREPHDR: file = %O, start = $0000, size = $0004;
|
SRPREPHDR: file = %O, start = $0000, size = $0004;
|
||||||
SRPREP: file = %O, start = %S, size = $7C20 - %S - $04FF; # $04FF: space for temp. chargen buffer, page aligned
|
SRPREP: file = %O, start = %S, size = $7C20 - %S - $07FF; # $07FF: space for temp. chargen buffer, 1K aligned
|
||||||
SRPREPTRL: file = %O, start = $0000, size = $0006;
|
SRPREPTRL: file = %O, start = $0000, size = $0006;
|
||||||
|
|
||||||
# "main program" load chunk
|
# "main program" load chunk
|
||||||
@ -34,14 +34,14 @@ MEMORY {
|
|||||||
__SAVEAREA_SIZE__ -
|
__SAVEAREA_SIZE__ -
|
||||||
__LOWBUFS_SIZE__;
|
__LOWBUFS_SIZE__;
|
||||||
|
|
||||||
|
# defines entry point into program
|
||||||
|
TRAILER: file = %O, start = $0000, size = $0006;
|
||||||
|
|
||||||
# address of relocated character generator
|
# address of relocated character generator
|
||||||
CHARGEN: file = "", define = yes, start = $D800, size = $0400;
|
CHARGEN: file = "", define = yes, start = $D800, size = $0400;
|
||||||
|
|
||||||
# memory beneath the ROM
|
# memory beneath the ROM
|
||||||
RAM_BELOW_ROM: file = "", start = $DC00, size = $FFF0 - $DC00;
|
RAM_BELOW_ROM: file = "", start = $DC00, size = $FFF0 - $DC00;
|
||||||
|
|
||||||
# defines entry point into program
|
|
||||||
TRAILER: file = %O, start = $0000, size = $0006;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SEGMENTS {
|
SEGMENTS {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user