12 lines
311 B
C
12 lines
311 B
C
#ifndef EMU_CPU_INSTRUCTION_H
|
|
#define EMU_CPU_INSTRUCTION_H
|
|
|
|
#include "../cpu_const.h"
|
|
#include "./ram.h"
|
|
#include "./register.h"
|
|
#include "./stack.h"
|
|
|
|
void ExecuteInstruction(CpuInstructions instruction, ArgumentInfo arg1Info,
|
|
ArgumentInfo arg2Info, r16_int arg1, r16_int arg2);
|
|
|
|
#endif |