mirror of
https://github.com/sheumann/NetDisk.git
synced 2024-11-23 22:37:02 +00:00
19 lines
369 B
C
19 lines
369 B
C
|
#ifndef ASMGLUE_H
|
||
|
#define ASMGLUE_H
|
||
|
|
||
|
#include <types.h>
|
||
|
|
||
|
extern Word ForceLCBank1(void);
|
||
|
extern Word ForceLCBank2(void);
|
||
|
extern Word ForceRomIn(void);
|
||
|
extern void RestoreStateReg(Word);
|
||
|
|
||
|
void IncBusyFlag(void) inline(0, 0xE10064);
|
||
|
void DecBusyFlag(void) inline(0, 0xE10068);
|
||
|
|
||
|
#define OS_KIND (*(Byte*)0xE100BC)
|
||
|
#define KIND_P8 0x00
|
||
|
#define KIND_GSOS 0x01
|
||
|
|
||
|
#endif
|