From 5f55ae1551760b7975ae005e01e4b3c63de49a64 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Sat, 24 Sep 2022 21:40:27 -0600 Subject: Implement decode of ALU instructions --- rtl/core/psr.sv | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 rtl/core/psr.sv (limited to 'rtl/core/psr.sv') 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 -- cgit v1.2.3