Basic arithmetic and jump labels
This commit is contained in:
19
include/execute/registers.hpp
Normal file
19
include/execute/registers.hpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
namespace Execute
|
||||
{
|
||||
struct Registers
|
||||
{
|
||||
union
|
||||
{
|
||||
struct
|
||||
{
|
||||
int A;
|
||||
int B;
|
||||
int C;
|
||||
int D;
|
||||
};
|
||||
int registers[4];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user