1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-22 12:30:41 +00:00

_dio_setup and _dio_finish are now called _dio_open and _dio_close; for

the Atari target they're both dummies


git-svn-id: svn://svn.cc65.org/cc65/trunk@359 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2000-10-12 20:52:23 +00:00
parent dcdfc7460c
commit 354605c751

View File

@ -33,16 +33,22 @@
typedef unsigned char _driveid_t;
typedef unsigned int _sectnum_t;
typedef unsigned int _sectsize_t;
#ifdef __ATARI__
#define _dio_query_sectsize(x) ((unsigned int)128)
#else
#define _dio_query_sectsize(x) ((unsigned int)256)
#endif
extern unsigned char __fastcall__ _dio_setup (_driveid_t drive_id);
extern unsigned char __fastcall__ _dio_finish (_driveid_t drive_id);
#define _dio_query_sectsize(x) ((_sectsize_t)128)
#define _dio_open(x)
#define _dio_close(x)
#else
#define _dio_query_sectsize(x) ((_sectsize_t)256)
extern unsigned char __fastcall__ _dio_open (_driveid_t drive_id);
extern unsigned char __fastcall__ _dio_close (_driveid_t drive_id);
#endif
extern unsigned char __fastcall__ _dio_format (_driveid_t drive_id, unsigned int format);
extern unsigned char __fastcall__ _dio_read (_driveid_t drive_id, _sectnum_t sect_num, void *buffer);