From: cpg Date: Wed, 18 Oct 2000 23:50:01 +0000 (+0000) Subject: adapted function prototype (comment) X-Git-Tag: V2.12.0~3144 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6b6e282283bc2c31d5cb62f1012b1dcfea1f3a45;p=cc65 adapted function prototype (comment) git-svn-id: svn://svn.cc65.org/cc65/trunk@382 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/atari/dioread.s b/libsrc/atari/dioread.s index 1b56e4294..12d65b300 100644 --- a/libsrc/atari/dioread.s +++ b/libsrc/atari/dioread.s @@ -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 ; diff --git a/libsrc/atari/diowrite.s b/libsrc/atari/diowrite.s index 315d9b5ac..015e880cf 100644 --- a/libsrc/atari/diowrite.s +++ b/libsrc/atari/diowrite.s @@ -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 ; diff --git a/libsrc/atari/diowritev.s b/libsrc/atari/diowritev.s index 5c14385d1..f504455f0 100644 --- a/libsrc/atari/diowritev.s +++ b/libsrc/atari/diowritev.s @@ -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 ;