things for today

This commit is contained in:
2026-03-18 09:36:45 -06:00
parent 1422730cc8
commit f51b6edfbf
7 changed files with 200 additions and 4 deletions

View File

@@ -21,9 +21,24 @@ namespace spider {
u64 RV;
u64 RM;
public:
/**
* These are private registers, which are only used
* whenever constant things are used.
* This way we don't "write" into constant values, rather
* we write into a writeable var which is "hidden"
*/
register_t ALU0, ALU1;
public:
CPU();
~CPU();
public:
// <pygen-target name=cpu-instructions> //
// </pygen-target> //
};
}