ram, instr reel, runtime, etc
This commit is contained in:
@@ -22,6 +22,7 @@ namespace spider {
|
||||
u64 RM;
|
||||
|
||||
public:
|
||||
|
||||
/**
|
||||
* These are private registers, which are only used
|
||||
* whenever constant things are used.
|
||||
@@ -31,9 +32,21 @@ namespace spider {
|
||||
register_t ALU0, ALU1;
|
||||
|
||||
public:
|
||||
|
||||
CPU();
|
||||
|
||||
CPU(const CPU& other) = default;
|
||||
|
||||
CPU(CPU&& other) noexcept = default;
|
||||
|
||||
~CPU();
|
||||
|
||||
public:
|
||||
|
||||
CPU& operator=(const CPU& other) = default;
|
||||
|
||||
CPU& operator=(CPU&& other) noexcept = default;
|
||||
|
||||
public:
|
||||
|
||||
// <pygen-target name=cpu-instructions> //
|
||||
|
||||
Reference in New Issue
Block a user