From ec5b362c3cda195178697192ba5a31643e5c358d Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Mon, 31 Oct 2022 21:23:09 -0700 Subject: Fix FLAGS bit handling by IO model --- isa/isa.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'isa') 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; static constexpr std::uint_fast32_t FLAG_INT_INHIBIT = 1 << 8; static constexpr std::uint_fast32_t FLAG_INT_REQUEST = 1 << 9; static constexpr std::uint_fast32_t FLAG_GREATER_THAN = 1 << 10; -static constexpr std::uint_fast32_t FLAG_INT_ENABLE_DELAY = 1 << 12; +static constexpr std::uint_fast32_t FLAG_INT_ENABLE_DELAY = 1 << 12; // n.b. this is not a "visible" flag // TT_BITS static constexpr std::uint_fast32_t TTI_FLAG = 1 << 0; -- cgit v1.2.3