1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

Fixed symbol usage

git-svn-id: svn://svn.cc65.org/cc65/trunk@3075 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-06-03 17:42:56 +00:00
parent 9a1bab361f
commit 2de3291ddb

View File

@ -9,7 +9,7 @@
.export _exit .export _exit
.import initlib, donelib .import initlib, donelib
.import callmain, zerobss .import callmain, zerobss
.import __RAM_START__, __RAM_SIZE__, __RAM_LAST__ .import __RAM_START__, __RAM_SIZE__, __BSS_LOAD__
.include "zeropage.inc" .include "zeropage.inc"
.include "atmos.inc" .include "atmos.inc"
@ -27,7 +27,7 @@
.byte $00 ; $2AF .byte $00 ; $2AF
.byte $80 ; $2AE Machine code flag .byte $80 ; $2AE Machine code flag
.byte $C7 ; $2AD Autoload flag .byte $C7 ; $2AD Autoload flag
.dbyt __RAM_START__ + __RAM_LAST__ ; $2AB .dbyt __BSS_LOAD__ ; $2AB
.dbyt __RAM_START__ ; $2A9 .dbyt __RAM_START__ ; $2A9
.byte $00 ; $2A8 .byte $00 ; $2A8
.byte $00 ; Zero terminated name .byte $00 ; Zero terminated name