Initial work on reading instructions from bootROM

This commit is contained in:
2021-02-15 22:55:09 +00:00
parent e56afb8c9e
commit 3191a19f7e
9 changed files with 166 additions and 11 deletions

10
rtl/cpu/cpu_pkg.svh Normal file
View File

@@ -0,0 +1,10 @@
package cpu_pkg;
typedef enum {
ST0_ADDR,
ST1_DEC,
ST2_EXEC,
ST3_INC_ADDR
} state_t;
endpackage