]> git.sur5r.net Git - cc65/blobdiff - libsrc/geos-cbm/disk/dio_read.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / geos-cbm / disk / dio_read.s
index 4b94a3e61592191351be9d73de95caf6202db7e6..db46c9b695bb3a2ca61e8dd9d54380e2301fd868 100644 (file)
@@ -4,20 +4,18 @@
 ;
 ; this file provides the _dio_read function
 ;
-; unsigned char __fastcall__ dio_read(dhandle_t handle,sectnum_t sect_num,void *buffer);
-; dhandle_t - 16bit (ptr)
-; sectnum_t - 16bit
+; unsigned char __fastcall__ dio_read (dhandle_t handle, unsigned sect_num, void *buffer);
 ;
 
-           .import dio_params, __oserror
-           .export _dio_read
+            .export _dio_read
+            .import dio_params, __oserror
 
-           .include "geossym.inc"
-           .include "jumptab.inc"
+            .include "geossym.inc"
+            .include "jumptab.inc"
 
 _dio_read:
-       jsr dio_params
-       jsr ReadBlock
-       stx __oserror
-       txa
-       rts
+        jsr dio_params
+        jsr ReadBlock
+        stx __oserror
+        txa
+        rts