1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

adapted function prototype (comment)

git-svn-id: svn://svn.cc65.org/cc65/trunk@382 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2000-10-18 23:50:01 +00:00
parent e9e7fd4d31
commit 6b6e282283
3 changed files with 6 additions and 6 deletions

View File

@ -3,8 +3,8 @@
;
; this file provides the _dio_read function
;
; unsigned char __fastcall__ _dio_read(_driveid_t drive_id, _sectnum_t sect_num, void *buffer);
; _driveid_t - 8bit
; unsigned char __fastcall__ _dio_read(_dhandle_t handle,_sectnum_t sect_num,void *buffer);
; _dhandle_t - 16bit (ptr)
; _sectnum_t - 16bit
;

View File

@ -3,8 +3,8 @@
;
; this file provides the _dio_write function
;
; unsigned char __fastcall__ _dio_write(_driveid_t drive_id, _sectnum_t sect_num, void *buffer);
; _driveid_t - 8bit
; unsigned char __fastcall__ _dio_write(_dhandle_t handle,_sectnum_t sect_num,const void *buffer);
; _dhandle_t - 16bit (ptr)
; _sectnum_t - 16bit
;

View File

@ -3,8 +3,8 @@
;
; this file provides the _dio_write function
;
; unsigned char __fastcall__ _dio_write_verify(_driveid_t drive_id, _sectnum_t sect_num, void *buffer);
; _driveid_t - 8bit
; unsigned char __fastcall__ _dio_write_verify(_dhandle_t handle,_sectnum_t sect_num,const void *buffer);
; _dhandle_t - 16bit (ptr)
; _sectnum_t - 16bit
;