GB: Clean up some unused stuff

This commit is contained in:
Jeffrey Pfau 2016-01-26 00:20:41 -08:00
parent 5d7a43639b
commit b9a42cc5a9
2 changed files with 0 additions and 5 deletions

View File

@ -20,8 +20,6 @@ struct GB;
struct GBTimer {
struct GB* p;
int mode;
int32_t nextEvent;
int32_t eventDiff;

View File

@ -48,10 +48,7 @@ enum LR35902ExecutionState {
};
struct LR35902Memory {
uint16_t (*load16)(struct LR35902Core*, uint16_t address);
uint8_t (*load8)(struct LR35902Core*, uint16_t address);
void (*store16)(struct LR35902Core*, uint16_t address, int16_t value);
void (*store8)(struct LR35902Core*, uint16_t address, int8_t value);
uint8_t* activeRegion;