dio functions and types now have no leading _ anymore
git-svn-id: svn://svn.cc65.org/cc65/trunk@435 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -8,20 +8,20 @@
|
||||
; cylinder and head and returns as sector number the
|
||||
; sector number it got
|
||||
;
|
||||
; unsigned char __fastcall__ _dio_phys_to_log(_dhandle_t handle,
|
||||
; _dio_phys_pos *physpos, /* input */
|
||||
; _sectnum_t *sectnum); /* output */
|
||||
; unsigned char __fastcall__ dio_phys_to_log(dhandle_t handle,
|
||||
; dio_phys_pos *physpos, /* input */
|
||||
; sectnum_t *sectnum); /* output */
|
||||
;
|
||||
; _dhandle_t - 16bit (ptr)
|
||||
; _sectnum_t - 16bit
|
||||
; dhandle_t - 16bit (ptr)
|
||||
; sectnum_t - 16bit
|
||||
;
|
||||
|
||||
.export __dio_phys_to_log
|
||||
.export _dio_phys_to_log
|
||||
.import popax,__oserror
|
||||
.importzp ptr1,ptr2,ptr3
|
||||
.include "atari.inc"
|
||||
|
||||
.proc __dio_phys_to_log
|
||||
.proc _dio_phys_to_log
|
||||
|
||||
sta ptr1
|
||||
stx ptr1+1 ; pointer to result
|
||||
|
||||
Reference in New Issue
Block a user