adapted function prototype (comment)
git-svn-id: svn://svn.cc65.org/cc65/trunk@382 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
e9e7fd4d31
commit
6b6e282283
3 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
;
|
||||
|
||||
|
|
|
@ -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
|
||||
;
|
||||
|
||||
|
|
|
@ -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
|
||||
;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue