Fix parameters to cbm_load and cbm_save

git-svn-id: svn://svn.cc65.org/cc65/trunk@1757 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-12-13 00:30:40 +00:00
parent da6462ebd3
commit 41f6d32cfd
3 changed files with 5 additions and 7 deletions

View File

@@ -181,8 +181,7 @@ void __fastcall__ cbm_k_clrch (void);
unsigned int cbm_load (const char* name, unsigned char device, unsigned int cbm_load (const char* name, unsigned char device, void* data);
const char* data);
/* Loads file "name" from given device to given address or to the load /* Loads file "name" from given device to given address or to the load
* address of the file if "data" is the null pointer (like load"name",8,1 * address of the file if "data" is the null pointer (like load"name",8,1
* in BASIC). * in BASIC).
@@ -191,7 +190,7 @@ unsigned int cbm_load (const char* name, unsigned char device,
*/ */
unsigned char cbm_save (const char* name, unsigned char device, unsigned char cbm_save (const char* name, unsigned char device,
unsigned char* data, unsigned int size); const void* data, unsigned int size);
/* Saves "size" bytes starting at "data" to a file. /* Saves "size" bytes starting at "data" to a file.
* Returns 0 if saving was successful, otherwise an errorcode (see table * Returns 0 if saving was successful, otherwise an errorcode (see table
* below). * below).

View File

@@ -2,7 +2,7 @@
* Marc 'BlackJack' Rintsch, 06.03.2001 * Marc 'BlackJack' Rintsch, 06.03.2001
* *
* unsigned int cbm_load(const char* name, * unsigned int cbm_load(const char* name,
* unsigned char device, * unsigned char device,
* const unsigned char* data); * const unsigned char* data);
*/ */
@@ -11,8 +11,7 @@
/* loads file "name" from given device to given address or to the load address /* loads file "name" from given device to given address or to the load address
* of the file if "data" is 0 * of the file if "data" is 0
*/ */
unsigned int cbm_load(const char* name, unsigned char device, unsigned int cbm_load(const char* name, unsigned char device, void* data)
const char* data)
{ {
/* LFN is set to 0 but it's not needed for loading. /* LFN is set to 0 but it's not needed for loading.
* (BASIC V2 sets it to the value of the SA for LOAD) */ * (BASIC V2 sets it to the value of the SA for LOAD) */

View File

@@ -13,7 +13,7 @@
/* saves a memory area from start to end-1 to a file. /* saves a memory area from start to end-1 to a file.
*/ */
unsigned char cbm_save(const char* name, unsigned char device, unsigned char cbm_save(const char* name, unsigned char device,
unsigned char* data, unsigned int size) const void* data, unsigned int size)
{ {
cbm_k_setlfs(0, device, 0); cbm_k_setlfs(0, device, 0);
cbm_k_setnam(name); cbm_k_setnam(name);