Remove trailing whitespace.

This commit is contained in:
Colin McMillen 2015-05-27 07:09:44 -04:00
parent f324413101
commit c94ac75c45
2 changed files with 5 additions and 5 deletions

View File

@ -95,8 +95,8 @@ Start:
lda #%00010100 lda #%00010100
sta MSENABLE sta MSENABLE
; Turn on the screen. ; Turn on the screen.
; Format: x000bbbb ; Format: x000bbbb
; x: 0 = screen on, 1 = screen off, bbbb: Brightness ($0-$F) ; x: 0 = screen on, 1 = screen off, bbbb: Brightness ($0-$F)
lda #%00001111 lda #%00001111
sta INIDISP sta INIDISP
@ -133,7 +133,7 @@ LoadPaletteAndTileData:
ldx #0 ldx #0
lda #128 ; Palette entries for sprites start at 128. lda #128 ; Palette entries for sprites start at 128.
sta CGADDR sta CGADDR
- -
lda.l SpritePalette, X lda.l SpritePalette, X
sta CGDATA sta CGDATA
inx inx
@ -672,4 +672,4 @@ TilePalette:
.ORG 0 .ORG 0
.SECTION "RandomBytes" .SECTION "RandomBytes"
.DBRND 32 * 1024, 0, 255 .DBRND 32 * 1024, 0, 255
.ENDS .ENDS

View File

@ -22,7 +22,7 @@
; http://www.dforce3000.de/pub/doc/anomie_regs.txt ; http://www.dforce3000.de/pub/doc/anomie_regs.txt
; $2100: Screen display initialization [INIDISP] ; $2100: Screen display initialization [INIDISP]
; Format: x000bbbb ; Format: x000bbbb
; x: 0 = screen on, 1 = screen off, bbbb: Brightness ($0-$F) ; x: 0 = screen on, 1 = screen off, bbbb: Brightness ($0-$F)
.define INIDISP $2100 .define INIDISP $2100