]> git.sur5r.net Git - cc65/blobdiff - libsrc/atari/diowrite.s
Some small first changes for the 'atarixl' target.
[cc65] / libsrc / atari / diowrite.s
index 8606d982164e3fa0af21655409837a3ac7253c7c..93c8763aca082a70975d0a2d22cb89f81190759f 100644 (file)
@@ -3,21 +3,20 @@
 ;
 ; this file provides the _dio_write function
 ;
-; unsigned char __fastcall__ dio_write(dhandle_t handle,sectnum_t sect_num,const void *buffer);
+; unsigned char __fastcall__ dio_write(dhandle_t handle,unsigned sect_num,const void *buffer);
 ; dhandle_t - 16bit (ptr)
-; sectnum_t - 16bit
 ;
 
-       .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