Minor changes
This commit is contained in:
parent
02574531db
commit
8fd3d27abe
2 changed files with 3 additions and 1 deletions
|
@ -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++){
|
||||
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue