mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
some debug messages ".ifdef DEBUG"
This commit is contained in:
parent
9f8b5668e1
commit
ce1313b36c
@ -9,6 +9,8 @@
|
||||
; Christian Groessler, chris@groessler.org, 2013
|
||||
;
|
||||
|
||||
DEBUG = 1
|
||||
|
||||
.if .defined(__ATARIXL__)
|
||||
|
||||
.export sramprep
|
||||
@ -162,8 +164,10 @@ okoko:
|
||||
sta ICCOM,x
|
||||
jsr CIOV_org
|
||||
|
||||
print_string "GR 0 OKOKO"
|
||||
.ifdef DEBUG
|
||||
print_string "Stage #2 OK"
|
||||
jsr delay
|
||||
.endif
|
||||
|
||||
|
||||
; Save the zero page locations we need
|
||||
|
@ -11,6 +11,8 @@
|
||||
; Christian Groessler, chris@groessler.org, 2013
|
||||
;
|
||||
|
||||
DEBUG = 1
|
||||
|
||||
.if .defined(__ATARIXL__)
|
||||
|
||||
.export syschk
|
||||
@ -118,6 +120,10 @@ sys_ok: lda #<__SAVEAREA_LOAD__
|
||||
|
||||
; all is well(tm), launch the application
|
||||
memlo_ok:
|
||||
.ifdef DEBUG
|
||||
print_string "Stage #1 OK"
|
||||
jsr delay
|
||||
.endif
|
||||
rts
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user