mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
babcf84f17
The API should be stable now. git-svn-id: svn://svn.cc65.org/cc65/trunk@1018 b7a2c559-68d2-44c3-8de9-860c34a00d81
23 lines
682 B
C
23 lines
682 B
C
/*
|
|
* Marc 'BlackJack' Rintsch, 06.03.2001
|
|
*
|
|
* unsigned int cbm_load(const char* name,
|
|
* unsigned char device,
|
|
* const unsigned char* data);
|
|
*/
|
|
|
|
#include <cbm.h>
|
|
|
|
/* loads file "name" from given device to given address or to the load address
|
|
* of the file if "data" is 0
|
|
*/
|
|
unsigned int cbm_load(const char* name, unsigned char device,
|
|
const char* data)
|
|
{
|
|
/* LFN is set to 0 but it's not needed for loading.
|
|
* (BASIC V2 sets it to the value of the SA for LOAD) */
|
|
cbm_k_setlfs(0, device, data == 0);
|
|
cbm_k_setnam(name);
|
|
return (cbm_k_load(0, (unsigned int)data) - (unsigned int)data);
|
|
}
|