From 9f4aa97822adc791f700670ef0fc7636849563b7 Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Sat, 29 Oct 2022 18:18:26 -0700 Subject: Understanding interrupt handling within SIMH (see echo_int.pal) Add list of Bugs Add event log file parser More changes associated with widening the ctlregs (FIXME add a typedef) Add some keyboard instructions --- io/event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io/event.h') diff --git a/io/event.h b/io/event.h index 2da3323..e17c333 100644 --- a/io/event.h +++ b/io/event.h @@ -9,7 +9,7 @@ struct event { ctlreg reg; std::uint_fast32_t mask; std::uint_fast32_t value; - event(ctlreg reg, std::uint_fast32_t value, std::uint_fast32_t mask=~0) + event(ctlreg reg, std::uint_fast32_t value, std::uint_fast32_t mask=~(std::uint_fast32_t)0) : reg(reg) , mask(mask) , value(value) -- cgit v1.2.3