Adjusted cc65 constructor to recent cc65 change.

With 0ee9b2e446 cc65 constructor may not use the BSS anymore.
ico
Oliver Schmidt 2015-10-29 22:25:48 +01:00
parent 5024468c2f
commit 634db88fe0
2 changed files with 4 additions and 10 deletions

View File

@ -64,16 +64,13 @@ SETNAM = $FFBD
CLALL = $FFE7
WRITE = $DEF1
READ = $DEF4
;---------------------------------------------------------------------
.bss
cmdc: .res 1
flags: .res 10
;---------------------------------------------------------------------
.data
illchr: .byte $3A, $2A, $3F, $3D ;illegal chars
pw: .byte $2C, $50, $2C, $57 ;,p,w
cmdc: .byte 0
flags: .res 10
;---------------------------------------------------------------------
.segment "INIT"

View File

@ -64,16 +64,13 @@ SETNAM = $FFBD
CLALL = $FFE7
WRITE = $DEF1
READ = $DEF4
;---------------------------------------------------------------------
.bss
cmdc: .res 1
flags: .res 10
;---------------------------------------------------------------------
.data
illchr: .byte $3A, $2A, $3F, $3D ;illegal chars
pw: .byte $2C, $50, $2C, $57 ;,p,w
cmdc: .byte 0
flags: .res 10
;---------------------------------------------------------------------
.segment "INIT"