Change calling convention of cbm_save() to __fastcall__.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4709 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2010-06-04 10:25:53 +00:00
parent ba0562c9f0
commit a86d23a63c
2 changed files with 8 additions and 4 deletions

View File

@@ -219,8 +219,10 @@ unsigned int cbm_load (const char* name, unsigned char device, void* data);
* otherwise 0. "_oserror" contains an errorcode then (see table below). * otherwise 0. "_oserror" contains an errorcode then (see table below).
*/ */
unsigned char cbm_save (const char* name, unsigned char device, unsigned char __fastcall__ cbm_save (const char* name,
const void* data, unsigned int size); unsigned char device,
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

@@ -12,8 +12,10 @@
/* 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 __fastcall__ cbm_save (const char* name,
const void* data, unsigned int size) unsigned char device,
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);