Permalink
Cannot retrieve contributors at this time
18 lines (12 sloc)
300 Bytes
| #ifndef BANK_MANAGER_H | |
| #define BANK_MANAGER_H | |
| #include "Stack.h" | |
| #include <gb/gb.h> | |
| #define N_PUSH_BANKS 10 | |
| extern UINT8* bank_stack; | |
| void PushBank(UINT8 b); | |
| void PopBank(); | |
| #define PUSH_BANK(N) PushBank(N); | |
| #define POP_BANK PopBank(); | |
| #define REFRESH_BANK SWITCH_ROM_MBC1(_current_bank) | |
| #endif |