12 lines
184 B
C
12 lines
184 B
C
#ifndef ISA_ARM_H
|
|
#define ISA_ARM_H
|
|
|
|
#include <stdint.h>
|
|
|
|
struct ARMCore;
|
|
|
|
void ARMStep(struct ARMCore* cpu);
|
|
typedef void (*ARMInstruction)(struct ARMCore*, uint32_t opcode);
|
|
|
|
#endif
|