chip-8/src/vcpu.h
2023-12-25 07:24:17 +01:00

15 lines
201 B
C

#pragma once
typedef struct VCPU_State {
short opcode;
char X;
char Y;
char N;
char NN;
short NNN;
} VCPU_State;
void VCPUInit();
void VCPUFetch();
void VCPUDecode();
void VCPUExecute();