]> git.sur5r.net Git - cc65/blobdiff - libsrc/atari/diowrite.s
Some small first changes for the 'atarixl' target.
[cc65] / libsrc / atari / diowrite.s
index b1dc4464fd7a42c6631d90c1695bae7727d9ffb0..93c8763aca082a70975d0a2d22cb89f81190759f 100644 (file)
@@ -7,16 +7,16 @@
 ; dhandle_t - 16bit (ptr)
 ;
 
-       .import         __sio_call,pushax
-       .export         _dio_write
-       .include        "atari.inc"
+        .import         __sio_call,pushax
+        .export         _dio_write
+        .include        "atari.inc"
 
-.proc  _dio_write
+.proc   _dio_write
 
-       jsr     pushax          ; push buffer address
-       ldx     #%10000000      ; indicate i/o direction (write)
-       lda     #SIO_WRITE      ; write sector command
-       jmp     __sio_call      ; do the call and return to the user
+        jsr     pushax          ; push buffer address
+        ldx     #%10000000      ; indicate i/o direction (write)
+        lda     #SIO_WRITE      ; write sector command
+        jmp     __sio_call      ; do the call and return to the user
 
 .endproc