14 lines
163 B
C
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)
|
|
{
|
|
|
|
}
|
|
} |