summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2021-05-23 22:01:17 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2021-05-23 22:01:17 +0200
commitd0f52d4f73b802b92c7f7b43e9928e998d92e83c (patch)
tree4038a165dd800eb7857c5b6eb4cefd3c46fdc3af
parent7b468ce59d1026346373f2180cb810734cfd7ac7 (diff)
Fix imports
-rw-r--r--pysc-v/InstructionSets/RV32I.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pysc-v/InstructionSets/RV32I.py b/pysc-v/InstructionSets/RV32I.py
index ab03bb7..53b6859 100644
--- a/pysc-v/InstructionSets/RV32I.py
+++ b/pysc-v/InstructionSets/RV32I.py
@@ -1,4 +1,5 @@
-from instructions import Instruction, InstructionSet
+from .instructions import Instruction, InstructionSet
+from ctypes import c_uint32
RV32I = InstructionSet()