mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
add missing newline to a bunch of files
This commit is contained in:
parent
5d45c655bd
commit
be22b8ad4d
@ -13,4 +13,4 @@ _textcolor := return1
|
||||
|
||||
_bgcolor := return0
|
||||
|
||||
_bordercolor := return0
|
||||
_bordercolor := return0
|
||||
|
@ -11,5 +11,5 @@
|
||||
.include "jumptab.inc"
|
||||
|
||||
_InitForIO = InitForIO
|
||||
|
||||
_DoneWithIO = DoneWithIO
|
||||
|
||||
_DoneWithIO = DoneWithIO
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_ToBASIC = ToBASIC
|
||||
_ToBASIC = ToBASIC
|
||||
|
@ -17,4 +17,3 @@ _CRC:
|
||||
lda r2L
|
||||
ldx r2H
|
||||
rts
|
||||
|
@ -13,4 +13,4 @@
|
||||
_DoIcons:
|
||||
sta r0L
|
||||
stx r0H
|
||||
jmp DoIcons
|
||||
jmp DoIcons
|
||||
|
@ -14,4 +14,4 @@ _DoMenu:
|
||||
sta r0L
|
||||
stx r0H
|
||||
lda #0
|
||||
jmp DoMenu
|
||||
jmp DoMenu
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_DoPreviousMenu = DoPreviousMenu
|
||||
_DoPreviousMenu = DoPreviousMenu
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_GotoFirstMenu = GotoFirstMenu
|
||||
_GotoFirstMenu = GotoFirstMenu
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_RecoverAllMenus = RecoverAllMenus
|
||||
_RecoverAllMenus = RecoverAllMenus
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_RecoverMenu = RecoverMenu
|
||||
_RecoverMenu = RecoverMenu
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_ReDoMenu = ReDoMenu
|
||||
_ReDoMenu = ReDoMenu
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_ClearMouseMode = ClearMouseMode
|
||||
_ClearMouseMode = ClearMouseMode
|
||||
|
@ -12,4 +12,4 @@
|
||||
|
||||
_DisablSprite:
|
||||
sta r3L
|
||||
jmp DisablSprite
|
||||
jmp DisablSprite
|
||||
|
@ -16,4 +16,4 @@ _DrawSprite:
|
||||
stx r4H
|
||||
jsr popa
|
||||
sta r3L
|
||||
jmp DrawSprite
|
||||
jmp DrawSprite
|
||||
|
@ -12,4 +12,4 @@
|
||||
|
||||
_EnablSprite:
|
||||
sta r3L
|
||||
jmp EnablSprite
|
||||
jmp EnablSprite
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_InitTextPrompt = InitTextPrompt
|
||||
_InitTextPrompt = InitTextPrompt
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_MouseOff = MouseOff
|
||||
_MouseOff = MouseOff
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_MouseUp = MouseUp
|
||||
_MouseUp = MouseUp
|
||||
|
@ -26,4 +26,4 @@ _PosSprite:
|
||||
sta r5L
|
||||
jsr popa
|
||||
sta r3L
|
||||
jmp PosSprite
|
||||
jmp PosSprite
|
||||
|
@ -11,4 +11,4 @@
|
||||
|
||||
_StartMouseMode:
|
||||
clc
|
||||
jmp StartMouseMode
|
||||
jmp StartMouseMode
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_CallRoutine = CallRoutine
|
||||
_CallRoutine = CallRoutine
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_FirstInit = FirstInit
|
||||
_FirstInit = FirstInit
|
||||
|
@ -9,4 +9,4 @@
|
||||
|
||||
.include "jumptab.inc"
|
||||
|
||||
_Panic = Panic
|
||||
_Panic = Panic
|
||||
|
@ -3,7 +3,7 @@
|
||||
;
|
||||
|
||||
.include "extzp.inc"
|
||||
|
||||
|
||||
.linecont +
|
||||
|
||||
;
|
||||
@ -13,7 +13,7 @@
|
||||
; Macro implementation of internal screensize
|
||||
; function for given width and height in
|
||||
; characters
|
||||
|
||||
|
||||
.export screensize
|
||||
|
||||
.proc screensize
|
||||
@ -34,11 +34,11 @@
|
||||
lda #<ScrBase ; Fill whole video RAM with blanks by calling
|
||||
ldx #>ScrBase ; memset appropriately
|
||||
jsr pushax
|
||||
|
||||
|
||||
lda #' '
|
||||
ldx #$00
|
||||
jsr pushax
|
||||
|
||||
|
||||
lda #<ScrRamSize
|
||||
ldx #>ScrRamSize
|
||||
jsr _memset
|
||||
@ -46,7 +46,7 @@
|
||||
lda #$00 ; Cursor in upper left corner
|
||||
sta CURS_X
|
||||
sta CURS_Y
|
||||
|
||||
|
||||
jmp plot ; Set the cursor position
|
||||
.endproc
|
||||
|
||||
@ -112,12 +112,12 @@ newline:
|
||||
lda #<(ScrBase + ScrFirstChar)
|
||||
ldx #>(ScrBase + ScrFirstChar)
|
||||
jsr pushax
|
||||
|
||||
|
||||
; Scroll source address
|
||||
lda #<(ScrBase + ScrFirstChar + ScrollDist)
|
||||
ldx #>(ScrBase + ScrFirstChar + ScrollDist)
|
||||
jsr pushax
|
||||
|
||||
|
||||
; Number of characters to move
|
||||
lda #<ScrollLength
|
||||
ldx #>ScrollLength
|
||||
@ -129,7 +129,7 @@ newline:
|
||||
sta ptr1
|
||||
lda #>(ScrBase + ScrFirstChar + ScrollLength)
|
||||
sta ptr1+1
|
||||
|
||||
|
||||
ldy #ScrWidth ; Fill last line with blanks
|
||||
lda #' '
|
||||
clrln: sta (ptr1),y
|
||||
@ -150,7 +150,7 @@ putchar:
|
||||
ldy CURS_X
|
||||
sta (SCREEN_PTR),y ; Set char
|
||||
rts
|
||||
|
||||
|
||||
.endmacro
|
||||
|
||||
.macro osi_screen_funcs ScrBase, ScrRamSize, ScrFirstChar, \
|
||||
@ -167,12 +167,13 @@ ScrTabLo:
|
||||
.repeat ScrHeight, I
|
||||
.byte <(ScrBase + ScrFirstChar + I * ScrollDist)
|
||||
.endrep
|
||||
|
||||
|
||||
ScrTabHi:
|
||||
.repeat ScrHeight, I
|
||||
.byte >(ScrBase + ScrFirstChar + I * ScrollDist)
|
||||
.endrep
|
||||
|
||||
|
||||
.code
|
||||
|
||||
osi_cputfuncs ScrBase, ScrFirstChar, ScrWidth, ScrHeight, \
|
||||
@ -180,4 +181,4 @@ osi_cputfuncs ScrBase, ScrFirstChar, ScrWidth, ScrHeight, \
|
||||
osi_screensize ScrWidth, ScrHeight
|
||||
osi_clrscr ScrBase, ScrRamSize
|
||||
|
||||
.endmacro
|
||||
.endmacro
|
||||
|
@ -27,4 +27,4 @@ int main() {
|
||||
printf("it works :)\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -35,4 +35,4 @@ seems to work.
|
||||
|
||||
greetings,
|
||||
Andreas
|
||||
*/
|
||||
*/
|
||||
|
@ -36,4 +36,4 @@ int main(void)
|
||||
000023r 1 A4 rr ldy sreg
|
||||
000025r 1 8C rr rr sty _b+2
|
||||
000028r 1 8C rr rr sty _b+3 ; lost 4th BYTE !
|
||||
*/
|
||||
*/
|
||||
|
@ -35,4 +35,4 @@ So testing with 999 gives:
|
||||
999 mod 999 is 0
|
||||
|
||||
This seems to be systematic.
|
||||
*/
|
||||
*/
|
||||
|
@ -24,4 +24,4 @@ int main()
|
||||
printf("a / b = %d", c);
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -24,4 +24,4 @@ int main() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Assert fails. (SVN rev 4381) */
|
||||
/* Assert fails. (SVN rev 4381) */
|
||||
|
Loading…
x
Reference in New Issue
Block a user