atari_antic.inc: use "or" instead of "plus" in the usage example
This commit is contained in:
parent
97e64c388c
commit
aeee5610e1
1 changed files with 6 additions and 4 deletions
|
@ -33,16 +33,16 @@ NMIRES = ANTIC + $0F ;NMI interrupt reset
|
||||||
; ScreenDL:
|
; ScreenDL:
|
||||||
; .byte DL_BLK8
|
; .byte DL_BLK8
|
||||||
; .byte DL_BLK8
|
; .byte DL_BLK8
|
||||||
; .byte DL_CHR40x8x1 + DL_LMS + DL_DLI
|
; .byte DL_CHR40x8x1 | DL_LMS | DL_DLI
|
||||||
; .word ScreenAlignment
|
; .word ScreenAlignment
|
||||||
; .byte DL_BLK1 + DL_DLI
|
; .byte DL_BLK1 | DL_DLI
|
||||||
; .byte DL_MAP320x1x1 + DL_LMS
|
; .byte DL_MAP320x1x1 | DL_LMS
|
||||||
; .word Screen
|
; .word Screen
|
||||||
;
|
;
|
||||||
; .repeat 99
|
; .repeat 99
|
||||||
; .byte DL_MAP320x1x1
|
; .byte DL_MAP320x1x1
|
||||||
; .endrepeat
|
; .endrepeat
|
||||||
; .byte DL_MAP320x1x1 + DL_LMS
|
; .byte DL_MAP320x1x1 | DL_LMS
|
||||||
; .word Screen + 40 * 100 ; 100 lines a 40 byte, 'Screen' has to be aligned correctly!
|
; .word Screen + 40 * 100 ; 100 lines a 40 byte, 'Screen' has to be aligned correctly!
|
||||||
; .repeat 92
|
; .repeat 92
|
||||||
; .byte DL_MAP320x1x1
|
; .byte DL_MAP320x1x1
|
||||||
|
@ -55,6 +55,8 @@ NMIRES = ANTIC + $0F ;NMI interrupt reset
|
||||||
DL_JMP = 1
|
DL_JMP = 1
|
||||||
DL_JVB = 65
|
DL_JVB = 65
|
||||||
|
|
||||||
|
; DL_BLKn display n empty lines (just background)
|
||||||
|
|
||||||
DL_BLK1 = 0
|
DL_BLK1 = 0
|
||||||
DL_BLK2 = 16
|
DL_BLK2 = 16
|
||||||
DL_BLK3 = 32
|
DL_BLK3 = 32
|
||||||
|
|
Loading…
Add table
Reference in a new issue