1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

align comment to the same column

This commit is contained in:
Christian Groessler 2014-01-11 01:05:13 +01:00
parent 09da71c5d9
commit c22b91e3c3

View File

@ -43,19 +43,19 @@ _mouse_def_callbacks:
.data .data
cursor = 11 ; '+' screen code' cursor = 11 ; '+' screen code'
; setcursor ; setcursor
getcursor: getcursor:
column: ldy #$00 ; Patched at runtime column: ldy #$00 ; Patched at runtime
lda (scrptr),y ; Patched at runtime lda (scrptr),y ; Patched at runtime
cmp #cursor cmp #cursor
rts rts
setcursor: setcursor:
lda #cursor lda #cursor
setscr: sta (scrptr),y ; Patched at runtime setscr: sta (scrptr),y ; Patched at runtime
rts rts
; ------------------------------------------------------------------------ ; ------------------------------------------------------------------------