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

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