Skip to content

Commit ee9cbb4

Browse files
committed
M: mv .py to ./tools
1 parent 9c0539c commit ee9cbb4

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

tools/__init__.py

Whitespace-only changes.

factory.py renamed to tools/factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from utils import hexCat
1+
from .utils import hexCat
22
class Instr_Factory:
33

44
def __init__(

instructions_54.py renamed to tools/instructions_54.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,3 @@
8787
# 1
8888
"eret": { "OP": 0b100000, "RS": 0b10000, "RT": 0b00000, "RD": 0b00000, "SA": 0b00000, "FUNCT": 0b011000 },
8989
}
90-

utils.py renamed to tools/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from instructions_54 import instr_set
1+
from .instructions_54 import instr_set
22

33
'''
44
OP RS RT RD SA FUNCT

0 commit comments

Comments
 (0)