diff options
Diffstat (limited to 'bruiser/wasm')
-rw-r--r-- | bruiser/wasm/execute.py | 2 | ||||
-rw-r--r-- | bruiser/wasm/init.py (renamed from bruiser/wasm/TBInit.py) | 2 | ||||
-rw-r--r-- | bruiser/wasm/opcodes.py (renamed from bruiser/wasm/OpCodes.py) | 0 | ||||
-rwxr-xr-x | bruiser/wasm/parse.py | 4 | ||||
-rw-r--r-- | bruiser/wasm/utils.py | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/bruiser/wasm/execute.py b/bruiser/wasm/execute.py index af8455f..40b9042 100644 --- a/bruiser/wasm/execute.py +++ b/bruiser/wasm/execute.py @@ -1,4 +1,4 @@ -from OpCodes import * +from opcodes import * from utils import Colors, ror, rol import numpy as np import math diff --git a/bruiser/wasm/TBInit.py b/bruiser/wasm/init.py index f14dfd1..f3ac986 100644 --- a/bruiser/wasm/TBInit.py +++ b/bruiser/wasm/init.py @@ -1,5 +1,5 @@ from utils import Colors, init_interpret, ParseFlags -from OpCodes import WASM_OP_Code +from opcodes import WASM_OP_Code from section_structs import Code_Section, Func_Body, WASM_Ins, Resizable_Limits, Memory_Section from execute import * import datetime as dti diff --git a/bruiser/wasm/OpCodes.py b/bruiser/wasm/opcodes.py index f7c9a1b..f7c9a1b 100644 --- a/bruiser/wasm/OpCodes.py +++ b/bruiser/wasm/opcodes.py diff --git a/bruiser/wasm/parse.py b/bruiser/wasm/parse.py index 05c6465..424a2b6 100755 --- a/bruiser/wasm/parse.py +++ b/bruiser/wasm/parse.py @@ -6,9 +6,9 @@ import sys import re from section_structs import * from utils import * -from OpCodes import * +from opcodes import * from copy import deepcopy -from TBInit import * +from init import * import readline import code import signal diff --git a/bruiser/wasm/utils.py b/bruiser/wasm/utils.py index 6f93a94..69393b4 100644 --- a/bruiser/wasm/utils.py +++ b/bruiser/wasm/utils.py @@ -1,4 +1,4 @@ -from OpCodes import * +from opcodes import * import numpy as np import struct as stc |