_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:
@@ -33,16 +33,22 @@
|
|||||||
|
|
||||||
typedef unsigned char _driveid_t;
|
typedef unsigned char _driveid_t;
|
||||||
typedef unsigned int _sectnum_t;
|
typedef unsigned int _sectnum_t;
|
||||||
|
typedef unsigned int _sectsize_t;
|
||||||
|
|
||||||
|
|
||||||
#ifdef __ATARI__
|
#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);
|
#define _dio_query_sectsize(x) ((_sectsize_t)128)
|
||||||
extern unsigned char __fastcall__ _dio_finish (_driveid_t drive_id);
|
#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_format (_driveid_t drive_id, unsigned int format);
|
||||||
extern unsigned char __fastcall__ _dio_read (_driveid_t drive_id, _sectnum_t sect_num, void *buffer);
|
extern unsigned char __fastcall__ _dio_read (_driveid_t drive_id, _sectnum_t sect_num, void *buffer);
|
||||||
|
|||||||
Reference in New Issue
Block a user