mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
b2e0ed603e
changed/added some comments all cbm_* IO functions are using _oserror now git-svn-id: svn://svn.cc65.org/cc65/trunk@682 b7a2c559-68d2-44c3-8de9-860c34a00d81
21 lines
533 B
C
21 lines
533 B
C
/*
|
|
* Marc 'BlackJack' Rintsch, 18.03.2001
|
|
*
|
|
* unsigned char cbm_open(unsigned char lfn, unsigned char device,
|
|
* unsigned char sec_addr, const char* name);
|
|
*/
|
|
|
|
#include <cbm.h>
|
|
|
|
extern unsigned char _oserror;
|
|
|
|
/* It's like BASIC's: OPEN lfn, device, sec_addr, "name"
|
|
*/
|
|
unsigned char cbm_open(unsigned char lfn, unsigned char device,
|
|
unsigned char sec_addr, const char* name)
|
|
{
|
|
cbm_k_setlfs(lfn, device, sec_addr);
|
|
cbm_k_setnam(name);
|
|
return _oserror = cbm_k_open();
|
|
}
|