From f9b0bac2452121e3d77ccc4721595b0b4dbf8255 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Sat, 5 Jun 2021 09:56:05 +0200 Subject: [PATCH] [Priv Exceptions] fixed constructor typo in TimerInterrupt --- riscemu/priv/Exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscemu/priv/Exceptions.py b/riscemu/priv/Exceptions.py index a060e79..e2b15fe 100644 --- a/riscemu/priv/Exceptions.py +++ b/riscemu/priv/Exceptions.py @@ -79,5 +79,5 @@ class InstructionAccessFault(CpuTrap): class TimerInterrupt(CpuTrap): - def __init(self): + def __init__(self): super().__init__(7, 0, CpuTrapType.TIMER)