r16/emu/cpu.h

11 lines
169 B
C
Raw Permalink Normal View History

2024-04-19 12:11:28 +00:00
#ifndef EMU_CPU_H
#define EMU_CPU_H
#include "cpu_const.h"
#include "cpu/ram.h"
#include "cpu/register.h"
#include "cpu/instruction.h"
2024-04-19 12:39:59 +00:00
void Run(r16_int entry);
2024-04-19 12:11:28 +00:00
#endif