summaryrefslogtreecommitdiff
path: root/isa/isa.h
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-10-31 21:23:09 -0700
committerJulian Blake Kongslie2022-10-31 21:23:09 -0700
commitec5b362c3cda195178697192ba5a31643e5c358d (patch)
tree949e8d4368892a4799a36a01d92293b346a9655a /isa/isa.h
parentFix trivial typo (diff)
downloadbiggolf-ec5b362c3cda195178697192ba5a31643e5c358d.tar.xz
Fix FLAGS bit handling by IO model
Diffstat (limited to '')
-rw-r--r--isa/isa.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/isa/isa.h b/isa/isa.h
index 71f852e..8156c08 100644
--- a/isa/isa.h
+++ b/isa/isa.h
@@ -36,7 +36,7 @@ static constexpr std::uint_fast32_t FLAG_INT_ENABLE = 1 << 7;
36static constexpr std::uint_fast32_t FLAG_INT_INHIBIT = 1 << 8; 36static constexpr std::uint_fast32_t FLAG_INT_INHIBIT = 1 << 8;
37static constexpr std::uint_fast32_t FLAG_INT_REQUEST = 1 << 9; 37static constexpr std::uint_fast32_t FLAG_INT_REQUEST = 1 << 9;
38static constexpr std::uint_fast32_t FLAG_GREATER_THAN = 1 << 10; 38static constexpr std::uint_fast32_t FLAG_GREATER_THAN = 1 << 10;
39static constexpr std::uint_fast32_t FLAG_INT_ENABLE_DELAY = 1 << 12; 39static constexpr std::uint_fast32_t FLAG_INT_ENABLE_DELAY = 1 << 12; // n.b. this is not a "visible" flag
40 40
41// TT_BITS 41// TT_BITS
42static constexpr std::uint_fast32_t TTI_FLAG = 1 << 0; 42static constexpr std::uint_fast32_t TTI_FLAG = 1 << 0;