Core: Expose timing

This commit is contained in:
Vicki Pfau 2018-10-14 11:25:02 -07:00
parent 0dc7da9a74
commit b913419069
3 changed files with 3 additions and 0 deletions

View File

@ -44,6 +44,7 @@ struct mVideoLogContext;
struct mCore {
void* cpu;
void* board;
struct mTiming* timing;
struct mDebugger* debugger;
struct mDebuggerSymbols* symbolTable;

View File

@ -99,6 +99,7 @@ static bool _GBCoreInit(struct mCore* core) {
}
core->cpu = cpu;
core->board = gb;
core->timing = &gb->timing;
gbcore->overrides = NULL;
gbcore->debuggerPlatform = NULL;
gbcore->cheatDevice = NULL;

View File

@ -148,6 +148,7 @@ static bool _GBACoreInit(struct mCore* core) {
}
core->cpu = cpu;
core->board = gba;
core->timing = &gba->timing;
core->debugger = NULL;
core->symbolTable = NULL;
gbacore->overrides = NULL;