De-inline ARMStep

This commit is contained in:
Jeffrey Pfau 2013-04-07 01:46:48 -07:00
parent b23f1ee3e3
commit 0e2394e7d5
2 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ void ARMAssociateMemory(struct ARMCore* cpu, struct ARMMemory* memory) {
cpu->memory = memory;
}
inline void ARMCycle(struct ARMCore* cpu) {
void ARMStep(struct ARMCore* cpu) {
// TODO
uint32_t opcode;
ARMInstruction instruction = cpu->loadInstruction(cpu->memory, cpu->gprs[ARM_PC] - cpu->instructionWidth, &opcode);

View File

@ -96,6 +96,6 @@ struct ARMCore {
void ARMInit(struct ARMCore* cpu);
void ARMAssociateMemory(struct ARMCore* cpu, struct ARMMemory* memory);
inline void ARMCycle(struct ARMCore* cpu);
void ARMStep(struct ARMCore* cpu);
#endif
#endif