11 lines
219 B
C
11 lines
219 B
C
#ifndef EMU_CPU_REGISTER_H
|
|
#define EMU_CPU_REGISTER_H
|
|
|
|
#include "../cpu_const.h"
|
|
#include "./ram.h"
|
|
|
|
void LogRegisters();
|
|
r16_int GetRegister(CpuRegisters reg);
|
|
void SetRegister(CpuRegisters reg, r16_int value);
|
|
|
|
#endif |