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:
cpg
2000-11-16 21:27:42 +00:00
parent 0283e309da
commit 16d52709b0
7 changed files with 32 additions and 34 deletions

View File

@@ -3,16 +3,16 @@
;
; this file provides the _dio_write function
;
; unsigned char __fastcall__ _dio_write(_dhandle_t handle,_sectnum_t sect_num,const void *buffer);
; _dhandle_t - 16bit (ptr)
; _sectnum_t - 16bit
; unsigned char __fastcall__ dio_write(dhandle_t handle,sectnum_t sect_num,const void *buffer);
; dhandle_t - 16bit (ptr)
; sectnum_t - 16bit
;
.import __sio_call,pushax
.export __dio_write
.export _dio_write
.include "atari.inc"
.proc __dio_write
.proc _dio_write
jsr pushax ; push buffer address
ldx #%10000000 ; indicate i/o direction (write)