]> git.sur5r.net Git - cc65/commitdiff
Remove trailings spaces from CBM-related asm files
authorBas Wassink <b.wassink@ziggo.nl>
Fri, 22 Mar 2019 21:54:05 +0000 (22:54 +0100)
committerBas Wassink <b.wassink@ziggo.nl>
Fri, 22 Mar 2019 21:54:05 +0000 (22:54 +0100)
30 files changed:
libsrc/c128/kbhit.s
libsrc/c64/acc_chameleon_speed.s
libsrc/c64/emd/c64-ram.s
libsrc/c64/emd/c64-reu.s
libsrc/c64/mouse_stddrv.s
libsrc/c64/randomize.s
libsrc/c64/sysuname.s
libsrc/cbm/cclear.s
libsrc/cbm/dir.s
libsrc/cbm/gotox.s
libsrc/cbm/open.s
libsrc/cbm510/_scrsize.s
libsrc/cbm510/kopen.s
libsrc/cbm510/kudtim.s
libsrc/cbm610/_scrsize.s
libsrc/cbm610/kopen.s
libsrc/cbm610/ksetnam.s
libsrc/cbm610/kudtim.s
libsrc/cbm610/randomize.s
libsrc/pet/kbsout.s
libsrc/pet/kckout.s
libsrc/pet/kclose.s
libsrc/pet/krdtim.s
libsrc/pet/ksetlfs.s
libsrc/pet/ksetnam.s
libsrc/pet/randomize.s
libsrc/plus4/break.s
libsrc/vic20/emd/vic20-rama.s
libsrc/vic20/kplot.s
libsrc/vic20/mainargs.s

index c1bca24160f5f0fbd414949a6e56ba12be28222f..0d4deacdf0b6cd74b0fca3857c001e737847d2b1 100644 (file)
@@ -20,6 +20,3 @@ L9:     rts
 
 .endproc
 
-
-
-                
index ce51b9dde993fe5925b6b905feb1ce3ac377108b..f73fddd01785c26ab9f1348d6beaeac38c2b830c 100755 (executable)
@@ -5,7 +5,7 @@
 ; unsigned char __fastcall__ set_chameleon_speed (unsigned char speed);
 ;
 ;/* Set the speed of the Chameleon cartridge, the following inputs
-; * are accepted: 
+; * are accepted:
 ; * SPEED_SLOW : 1 Mhz mode
 ; * SPEED_1X   : 1 Mhz mode
 ; * SPEED_2X   : 2 Mhz mode
index b41f932e611e415332a8319bd9854870802542c4..5355b552da0bb34a4f080b0df8766e7d101dfce6 100644 (file)
@@ -167,7 +167,7 @@ loop:   .repeat 8
 
 ; Done
 
-done:   rts               
+done:   rts
 
 ; ------------------------------------------------------------------------
 ; COPYFROM: Copy from extended into linear memory. A pointer to a structure
@@ -178,7 +178,7 @@ done:   rts
 COPYFROM:
         sta     ptr3
         stx     ptr3+1                  ; Save the passed em_copy pointer
-                       
+
         ldy     #EM_COPY::OFFS
         lda     (ptr3),y
         sta     ptr1
index bf7bb4fb0cb6f02d732bb7553d4d2401e116b571..a563305cea3c2983dcbf1d1f9f7e9e2215571ef0 100644 (file)
@@ -190,7 +190,7 @@ done:   rts
 
 ; ------------------------------------------------------------------------
 ; USE: Tell the driver that the window is now associated with a given page.
-                                        
+
 USE:    sta     curpage
         stx     curpage+1               ; Remember the page
         lda     #<window
index b53440a52be5d8895cf2544c2d983dec7864e633..f3a2c64997dcb09ff8d13aef91012985b9c7287b 100644 (file)
@@ -12,4 +12,3 @@
 
 _mouse_stddrv:  .asciiz "c64-1351.mou"
 
-      
index d74bae91eea67437f19f23a2ef3dc577f7da1f54..a875203afed7cd472c3ca3f619c14b68df58430f 100644 (file)
@@ -11,7 +11,7 @@
 
         .include        "c64.inc"
 
-__randomize:              
+__randomize:
         ldx     VIC_HLINE       ; Use VIC rasterline as high byte
         lda     TIME+2          ; Use 60HZ clock as low byte
         jmp     _srand          ; Initialize generator
index 15546bfa3d27e3a304dd00d749242021ec22198b..2d185a1c8a698341190de6899e647eb01fda2ed3 100644 (file)
@@ -35,5 +35,3 @@ utsdata:
         ; machine
         .asciiz         "Commodore 64"
 
-
-         
index 14b9d0e8be15737b213ec9c7de15a3cb0a05f64a..e6277eed0486f98005a8922e02a8930c3fc6c03f 100644 (file)
@@ -17,7 +17,7 @@ _cclearxy:
 _cclear:
         cmp     #0              ; Is the length zero?
         beq     L9              ; Jump if done
-        sta     tmp1                                 
+        sta     tmp1
 L1:     lda     #$20            ; Blank - screen code
         jsr     cputdirect      ; Direct output
         dec     tmp1
index fddd71d7c1ce357f7d2e308ad0ed46e854c5b8e6..808fcf982d779b2f212ce36fccc79594d4e3b975 100644 (file)
@@ -7,7 +7,7 @@
         .include        "dir.inc"
         .include        "errno.inc"
         .include        "zeropage.inc"
-                             
+
         .import         pushax
         .import         _read
 
index f122a276c9f93f32172412bad9a34d3a85b9423a..76f56cb4b1ae8b1222db0a203b3d06af3067e513 100644 (file)
@@ -5,11 +5,9 @@
 ;
 
         .export         _gotox
-        .import         plot           
+        .import         plot
         .importzp       CURS_X
 
 _gotox: sta     CURS_X          ; Set new position
         jmp     plot            ; And activate it
 
-
-
index f23e97383cff68918ef262ad39b227c85751abe7..317f9eaa27f857c97de2ec66c7a18d5b51c718e2 100644 (file)
@@ -194,5 +194,3 @@ nofile:                         ; ... else use SA=0 (read)
 
 .endproc
 
-
-           
index 8b68b8cdce109d9a75d4a3f3009e70e31303bc6a..5f3076920e18b58bebfebc2165be44776fc76c4b 100644 (file)
@@ -6,7 +6,6 @@
 
         .export         screensize
         .import         SCREEN
-                              
-        screensize      = SCREEN
 
+        screensize      = SCREEN
 
index 02592232034b737bca0236e1d40582edf628ea1e..7358b091a8243bfa170ac6b1613c29ee62a17afc 100644 (file)
@@ -3,10 +3,10 @@
 ;
 ; OPEN kernal call.
 ;
-; NOTE: The OPEN system call in the CBM610 kernal is different from the 
+; NOTE: The OPEN system call in the CBM610 kernal is different from the
 ; standard. It evaluates the carry flag and does a normal open if carry clear
 ; and some strange things (output sa 15 + name on IEC) if carry set. To be
-; compatible with our CBM file stuff, we have to clear the carry before 
+; compatible with our CBM file stuff, we have to clear the carry before
 ; calling the real OPEN.
 
         .export         OPEN
@@ -18,5 +18,3 @@
 
 .endproc
 
-
-
index 6862787fb6cd6cba93b513cdb6a1b8820a0ed720..f587e5aa0e0e14111f4ca4eea2496570a69ffb84 100644 (file)
@@ -3,7 +3,7 @@
 ;
 ; udtim routine for the 610. We will not check for the stop key here, since
 ; C programs will not use it.
-;                                  
+;
 
         .export         UDTIM
         .import         time: zp
index 8b68b8cdce109d9a75d4a3f3009e70e31303bc6a..5f3076920e18b58bebfebc2165be44776fc76c4b 100644 (file)
@@ -6,7 +6,6 @@
 
         .export         screensize
         .import         SCREEN
-                              
-        screensize      = SCREEN
 
+        screensize      = SCREEN
 
index 02592232034b737bca0236e1d40582edf628ea1e..7358b091a8243bfa170ac6b1613c29ee62a17afc 100644 (file)
@@ -3,10 +3,10 @@
 ;
 ; OPEN kernal call.
 ;
-; NOTE: The OPEN system call in the CBM610 kernal is different from the 
+; NOTE: The OPEN system call in the CBM610 kernal is different from the
 ; standard. It evaluates the carry flag and does a normal open if carry clear
 ; and some strange things (output sa 15 + name on IEC) if carry set. To be
-; compatible with our CBM file stuff, we have to clear the carry before 
+; compatible with our CBM file stuff, we have to clear the carry before
 ; calling the real OPEN.
 
         .export         OPEN
@@ -18,5 +18,3 @@
 
 .endproc
 
-
-
index ab5c6d730749f89f73c3c24d119109b155d76239..97ecf012674ecaec656d98a6fae91655bd8e8381 100644 (file)
@@ -12,7 +12,7 @@
 
         .import         sys_bank, restore_bank
         .import         sysp0: zp, ktmp: zp
-                                                  
+
         .include        "cbm610.inc"
 
 .proc   SETNAM
@@ -41,5 +41,3 @@
 
 .endproc
 
-
-
index 6862787fb6cd6cba93b513cdb6a1b8820a0ed720..f587e5aa0e0e14111f4ca4eea2496570a69ffb84 100644 (file)
@@ -3,7 +3,7 @@
 ;
 ; udtim routine for the 610. We will not check for the stop key here, since
 ; C programs will not use it.
-;                                  
+;
 
         .export         UDTIM
         .import         time: zp
index d313baa1bfe1a2765d4fdd297d88abae6d939d55..75c419ccbbcf1b7b7c2ba7a3d3958fc0c367dd8c 100644 (file)
@@ -10,7 +10,7 @@
         .import         _srand
         .importzp       time
 
-__randomize:               
+__randomize:
         ldx     time+2          ; Use 50/60HZ clock
         lda     time+1
         jmp     _srand          ; Initialize generator
index 1e8912324dd17dd23c2de492d887f88cd9a8436e..178ac8205a3e488e4a57875c6a838672ad8503fc 100644 (file)
@@ -15,5 +15,3 @@
 
 .endproc
 
-
-                     
index 8c5f4d4153acf05b95b8e82ff9157952633fa77d..65c4e8142e0a9de3b751a0a85d4a8f9a8e78c474 100644 (file)
@@ -15,5 +15,3 @@
 
 .endproc
 
-
-                     
index 1da034017a3c9524d8ad7f21d05d7ca256ff2c0a..c7eb19ea050017b57a81bb56d4157c00bc9703ec 100644 (file)
@@ -10,7 +10,7 @@
 
 
 .proc   CLOSE
-                     
+
         ldx     PET_DETECT
         cpx     #PET_4000
         bne     @L1
@@ -19,4 +19,3 @@
 
 .endproc
 
-
index 355cce3d8f101c7b261f080fa31b0d90f00da4e5..cce218928dc2a9de3a82b3e1cb22f9be4e968145 100644 (file)
@@ -5,7 +5,7 @@
 ;
 
         .export         RDTIM
-        
+
         .include        "pet.inc"
 
 
@@ -20,4 +20,3 @@
 
 .endproc
 
-
index 6e9065ac74c4c2b3928b21bec5a32afbed03d855..50e6471e3f9b9d33a8a6ea42752500a5e0ab3617 100644 (file)
@@ -15,7 +15,6 @@
         stx     DEVNUM          ; Device address
         sty     SECADR          ; Secondary address
         rts
-                      
-.endproc
 
+.endproc
 
index 0bf6411bd7869ef6dc68d29afcb6e430de047ffc..9a911e38b4f09aeef7cc02c72cc9b66fccf07758 100644 (file)
@@ -10,7 +10,7 @@
 
 
 .proc   SETNAM
-        
+
         sta     FNLEN
         stx     FNADR
         sty     FNADR+1
@@ -18,4 +18,3 @@
 
 .endproc
 
-
index 2c0fe722a49e40b8fc0cbf113ecfbd3c6439c5ab..44bf4c38e7a7959f6321a68258b2b1018a1c3af2 100644 (file)
@@ -11,7 +11,7 @@
 
         .include        "pet.inc"
 
-__randomize:              
+__randomize:
         ldx     TIME+2
         lda     TIME+1          ; Use 60HZ clock
         jmp     _srand          ; Initialize generator
index 917304425339e8715667315326a18762493940d2..03d2ee97a0ad01b3840f5574ffac814fa8947984 100644 (file)
@@ -55,7 +55,7 @@ uservec:        jmp     $FFFF           ; Patched at runtime
 
 
 
-; Break handler, called if a break occurs. 
+; Break handler, called if a break occurs.
 
 .proc   brk_handler
 
@@ -91,4 +91,3 @@ uservec:        jmp     $FFFF           ; Patched at runtime
 
 .endproc
 
-
index a48959c1383c0f5c03c9e866abd4c88b9da12469..133c3974b324b8331628ef233c56b36d320967eb 100644 (file)
@@ -167,7 +167,7 @@ loop:   .repeat 8
 
 ; Done
 
-done:   rts               
+done:   rts
 
 ; ------------------------------------------------------------------------
 ; COPYFROM: Copy from extended into linear memory. A pointer to a structure
@@ -178,7 +178,7 @@ done:   rts
 COPYFROM:
         sta     ptr3
         stx     ptr3+1                  ; Save the passed em_copy pointer
-                       
+
         ldy     #EM_COPY::OFFS
         lda     (ptr3),y
         sta     ptr1
index 2f4de27546fc0f65c38d3a6fc18e1cb88bae0d5c..f37ed8fce43030ed9009e3efbc5defff372e50fb 100644 (file)
@@ -10,7 +10,7 @@
 
 .proc   PLOT
 
-        bcs     @L1                     
+        bcs     @L1
         jsr     $FFF0                   ; Set cursor position
         jmp     $EAB2                   ; Set pointer to color RAM
 
@@ -18,4 +18,3 @@
 
 .endproc
 
-
index b24745c084bacccad6aa0261c4a961095980fa11..84e256615af31864040fd07aecb8dcc5da787b8f 100644 (file)
@@ -102,7 +102,7 @@ argloop:lda     BASIC_BUF,x
         inx
         cmp     term
         bne     argloop
-                          
+
 ; We've found the end of the argument. X points one character behind it, and
 ; A contains the terminating character. To make the argument a valid C string,
 ; replace the terminating character by a zero.