1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Minor cleanup of unnecessary newlines.

This commit is contained in:
Stephan Mühlstrasser 2015-01-11 18:22:36 +01:00
parent aedefb81ec
commit b1f764bdc9
9 changed files with 3 additions and 20 deletions

View File

@ -1,7 +1,6 @@
FEATURES {
STARTADDRESS: default = $0200;
}
SYMBOLS {
__STACKSIZE__: type = weak, value = $0400; # 1 kB stack
__HIMEM__: type = weak, value = $8000; # 32 kB RAM

View File

@ -19,4 +19,3 @@
rts
.endproc

View File

@ -27,7 +27,3 @@ L1: lda #$20 ; Blank - screen code
dec tmp1
bne L1
L9: rts

View File

@ -60,4 +60,3 @@ _init: ldx #$FF ; Initialize stack pointer to $01FF
_exit: jsr donelib ; Run destructors
brk

View File

@ -287,4 +287,3 @@ __ctype:
.byte $00 ; 253/fd _y'_acute__
.byte $00 ; 254/fe _sm_thorn__
.byte $00 ; 255/ff _y"_dieres_

View File

@ -27,6 +27,3 @@ L1: lda #$95 ; Vertical bar
dec tmp1
bne L1
L9: rts

View File

@ -5,13 +5,9 @@
;
; void gotox (unsigned char x);
;
.export _gotox
.import plot
.importzp CURS_X
_gotox: sta CURS_X ; Set new position
jmp plot ; And activate it

View File

@ -1,9 +1,11 @@
;
; copied from CBM implementation
;
; originally by:
; Ullrich von Bassewitz, 06.08.1998
;
; void gotoxy (unsigned char x, unsigned char y);
;
.export _gotoxy
.import popa, plot
.importzp CURS_X, CURS_Y
@ -13,5 +15,3 @@ _gotoxy:
jsr popa ; Get X
sta CURS_X ; Set X
jmp plot ; Set the cursor position

View File

@ -5,11 +5,9 @@
;
; void gotoy (unsigned char y);
;
.export _gotoy
.import plot
.importzp CURS_Y
_gotoy: sta CURS_Y ; Set the new position
jmp plot ; And activate it