Minor changes

This commit is contained in:
Loïc Guégan 2023-12-25 09:25:14 +01:00
parent 02574531db
commit 8fd3d27abe
2 changed files with 3 additions and 1 deletions

View file

@ -57,7 +57,7 @@ void VCPUExecute(){
case 0xD:
int X=State.V[State.X]%63;
int Y=State.V[State.Y]%31;
State.V[0xF]=0; // Set flag to 0
State.V[REG_FLAG]=0; // Set flag to 0
for(char row=0;row<State.N;row++){
}

View file

@ -1,5 +1,7 @@
#pragma once
#define REG_FLAG 0xF
typedef struct VCPU_State {
// Program Counter (16 bits but only 12 bits used (4096 memory addresses))
unsigned short PC;