]> git.sur5r.net Git - cc65/commitdiff
Minor cleanup of unnecessary newlines.
authorStephan Mühlstrasser <stephan.muehlstrasser@web.de>
Sun, 11 Jan 2015 17:22:36 +0000 (18:22 +0100)
committerStephan Mühlstrasser <stephan.muehlstrasser@web.de>
Sun, 11 Jan 2015 19:08:39 +0000 (20:08 +0100)
cfg/c1p.cfg
libsrc/c1p/_scrsize.s
libsrc/c1p/cclear.s
libsrc/c1p/crt0.s
libsrc/c1p/ctype.s
libsrc/c1p/cvline.s
libsrc/c1p/gotox.s
libsrc/c1p/gotoxy.s
libsrc/c1p/gotoy.s

index 633298270675384eb28035516fc68f2098d391ff..59fdd34d8b0baa422988cbd01452818a677f8050 100644 (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
index 75de2b3491a2ea555971baa51e4330cf680496ea..3b0d71c2f6d6ec72f80378dcb803e64aef1f707d 100644 (file)
@@ -19,4 +19,3 @@
         rts
 
 .endproc
-
index 4412f0bbafbb7f78b8d096f396252dc3f5ef433b..4e18c70a30088dcf5245fca70411d4c7d1314b59 100644 (file)
@@ -27,7 +27,3 @@ L1:     lda     #$20            ; Blank - screen code
         dec     tmp1
         bne     L1
 L9:     rts
-
-
-
-
index dde348ee8e64b77dbabd247e992c599e8ecc2bc1..908943e91b8e6f6ddf5732283bc90f31f2696471 100644 (file)
@@ -60,4 +60,3 @@ _init:    ldx     #$FF                 ; Initialize stack pointer to $01FF
 
 _exit:    jsr     donelib              ; Run destructors
           brk
-
index dd7ac62c32d0e42b6dd1a8efd8f4da194858ff0e..fa901c1895b2ed49c7f6361899f2b430a2465441 100644 (file)
@@ -287,4 +287,3 @@ __ctype:
         .byte   $00                                     ; 253/fd _y'_acute__
         .byte   $00                                     ; 254/fe _sm_thorn__
         .byte   $00                                     ; 255/ff _y"_dieres_
-
index 607a4c69138d7d86c8bb000dbe48d074da762151..c485918eecdb75735e4e878cd3960cb139d9f721 100644 (file)
@@ -27,6 +27,3 @@ L1:     lda     #$95             ; Vertical bar
         dec     tmp1
         bne     L1
 L9:     rts
-
-
-
index 315e1b5eea74853c63c59cf6b674a0d1448ba1ac..fb84975d188914aaa5a0de4b76436efd1962eeac 100644 (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
-
-
-
index 64c6bd21d1639d9f26e07d940273ab77fce1180a..32d1f1df27ea3930ffde1843402a661195666aaa 100644 (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
-
-
index e9e81451a2b396009cd76214429477213703ac06..fcd60dd3115ff1edf6e5af7a2faf94b40d6a7b5a 100644 (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
-