Type of LOWCODE was wrong. Cleanup.
git-svn-id: svn://svn.cc65.org/cc65/trunk@1889 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
4d892a7993
commit
efc905a39e
1 changed files with 6 additions and 7 deletions
|
@ -5,12 +5,12 @@ MEMORY {
|
||||||
}
|
}
|
||||||
SEGMENTS {
|
SEGMENTS {
|
||||||
ZEROPAGE: load = ZP, type = zp, define = yes; # Pseudo-registers
|
ZEROPAGE: load = ZP, type = zp, define = yes; # Pseudo-registers
|
||||||
STARTUP: load = RAM, type = wp; # First initiation code
|
STARTUP: load = RAM, type = ro; # First initiation code
|
||||||
LOWCODE: load = RAM, type = rw; # Legacy from other platforms
|
LOWCODE: load = RAM, type = ro; # Legacy from other platforms
|
||||||
CODE: load = RAM, type = ro; # Program
|
CODE: load = RAM, type = ro; # Program
|
||||||
RODATA: load = RAM, type = ro; # Literals, constants
|
RODATA: load = RAM, type = ro; # Literals, constants
|
||||||
DATA: load = RAM, type = rw; # Initiated variables
|
DATA: load = RAM, type = rw; # Initialized variables
|
||||||
BSS: load = RAM, type = bss, define = yes; # Un-initiated variables
|
BSS: load = RAM, type = bss, define = yes; # Uninitialized variables
|
||||||
}
|
}
|
||||||
FEATURES {
|
FEATURES {
|
||||||
CONDES: segment = RODATA,
|
CONDES: segment = RODATA,
|
||||||
|
@ -28,7 +28,6 @@ FILES {
|
||||||
FORMATS {
|
FORMATS {
|
||||||
o65: os = lunix, type = small,
|
o65: os = lunix, type = small,
|
||||||
export = main, # Program entry-point
|
export = main, # Program entry-point
|
||||||
# import = LIB6502, # Shared-library entry-points
|
|
||||||
import = LUNIXKERNEL; # Kernel entry-points
|
import = LUNIXKERNEL; # Kernel entry-points
|
||||||
}
|
}
|
||||||
SYMBOLS {
|
SYMBOLS {
|
||||||
|
|
Loading…
Add table
Reference in a new issue