1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Remove em_load

git-svn-id: svn://svn.cc65.org/cc65/trunk@1681 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-11-30 00:01:30 +00:00
parent 66f85941c9
commit f5193bc0d1
2 changed files with 0 additions and 14 deletions

View File

@ -47,9 +47,6 @@
/* Size of an extended memory page */
#define EM_PAGE_SIZE 256
/* Driver constants */
#define EM_DRV_DETECT 0
/* Error codes */
#define EM_ERR_OK 0 /* No error */
#define EM_ERR_NO_DRIVER 1 /* No driver available */
@ -74,9 +71,6 @@ struct em_copy {
unsigned char __fastcall__ em_load (unsigned char driver);
/* Load the extended memory driver and return an error code. */
unsigned char __fastcall__ em_load_driver (const char* driver);
/* Load an extended memory driver and return an error code */

View File

@ -41,14 +41,6 @@
unsigned char __fastcall__ em_load (unsigned char driver)
/* Load the extended memory driver and return an error code. */
{
return EM_ERR_NO_DRIVER;
}
unsigned char __fastcall__ em_load_driver (const char* name)
/* Load an extended memory driver and return an error code */
{