mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 15:05:14 +00:00
Fixed wrong size of HEADER area. The invalid size had no bad effects, but it
was wrong anyway. git-svn-id: svn://svn.cc65.org/cc65/trunk@4869 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
0e0bb60d21
commit
461bf5e81e
@ -6,7 +6,7 @@ SYMBOLS {
|
|||||||
MEMORY {
|
MEMORY {
|
||||||
ZP: file = "", define = yes, start = $0002, size = $001A;
|
ZP: file = "", define = yes, start = $0002, size = $001A;
|
||||||
LOADADDR: file = %O, start = $07FF, size = $0002;
|
LOADADDR: file = %O, start = $07FF, size = $0002;
|
||||||
HEADER: file = %O, start = $0801, size = $000E;
|
HEADER: file = %O, start = $0801, size = $000C;
|
||||||
RAM: file = %O, define = yes, start = $080D, size = $C7F3 - __STACKSIZE__;
|
RAM: file = %O, define = yes, start = $080D, size = $C7F3 - __STACKSIZE__;
|
||||||
}
|
}
|
||||||
SEGMENTS {
|
SEGMENTS {
|
||||||
|
Loading…
Reference in New Issue
Block a user