r16/emu/cpu.c
2024-04-19 12:11:28 +00:00

14 lines
163 B
C

#include "cpu.h"
#include <stdbool.h>
void Run(r16_int entry)
{
r16_int instruction, arg1, arg2;
SetRegister(PC, entry);
while (true)
{
}
}