]> git.sur5r.net Git - cc65/blobdiff - libsrc/atari/diowritev.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / atari / diowritev.s
index da776b2f259ba9cd94f4567dc2566b993a0d6c70..5c91f4f6e369dec90827a7637dc45fe65ee9d433 100644 (file)
@@ -1,23 +1,22 @@
 ;
 ; Christian Groessler, October 2000
 ;
-; this file provides the _dio_write function
+; this file provides the _dio_write_verify function
 ;
-; unsigned char __fastcall__ dio_write_verify(dhandle_t handle,sectnum_t sect_num,const void *buffer);
+; unsigned char __fastcall__ dio_write_verify(dhandle_t handle,unsigned sect_num,const void *buffer);
 ; dhandle_t - 16bit (ptr)
-; sectnum_t - 16bit
 ;
 
-       .import         __sio_call,pushax
-       .export         _dio_write_verify
-       .include        "atari.inc"
+        .import         __sio_call,pushax
+        .export         _dio_write_verify
+        .include        "atari.inc"
 
-.proc  _dio_write_verify
+.proc   _dio_write_verify
 
-       jsr     pushax          ; push buffer address
-       ldx     #%10000000      ; indicate i/o direction (write)
-       lda     #SIO_WRITEV     ; 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_WRITEV     ; write sector command
+        jmp     __sio_call      ; do the call and return to the user
 
 .endproc