Long literals, with continuations: Difference between revisions

m
→‎{{header|6502 Assembly}}: removed trailing spaces
m (→‎{{header|6502 Assembly}}: removed trailing spaces)
Line 108:
db 0
hydrogen:
db "hydrogen ",0
helium:
db "helium ",0
lithium:
db "lithium ",0
;etc.
 
Line 119:
 
Finally:
db "elements, the last is ",0
ElementCount equ (Elements_End-Elements)/2
; a constant value that cannot change at runtime.
Line 147:
JSR PrintString
 
LDA #$20 ;ASCII for spacebar
JSR PrintChar
 
LDA ElementCount
1,489

edits