diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-09-24 21:40:27 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-09-24 21:40:27 -0600 |
| commit | 5f55ae1551760b7975ae005e01e4b3c63de49a64 (patch) | |
| tree | aaa266490e48a9a19f9ae4283bcb6bd1bb9a3100 /rtl/core/psr.sv | |
| parent | cafa82ab147544e80aeec08069b35f16541e27f2 (diff) | |
Implement decode of ALU instructions
Diffstat (limited to '')
| -rw-r--r-- | rtl/core/psr.sv | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/rtl/core/psr.sv b/rtl/core/psr.sv new file mode 100644 index 0000000..a66751a --- /dev/null +++ b/rtl/core/psr.sv @@ -0,0 +1,9 @@ +`ifndef CORE_PSR_SV +`define CORE_PSR_SV + +typedef struct packed +{ + logic n, z, c, v; +} psr_flags; + +`endif |
