Skip to content

Commit 6aa711e

Browse files
committed
Moving .ini file
1 parent 2130b4a commit 6aa711e

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed
File renamed without changes.
Binary file not shown.

src/riscv_assembler/convert.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
- Update tests
1313
'''
1414

15-
from instr_arr import *
16-
from parse import *
15+
from riscv_assembler.instr_arr import *
16+
from riscv_assembler.parse import *
1717

1818
__all__ = ['AssemblyConverter']
1919

src/riscv_assembler/parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from instr_arr import *
1+
from riscv_assembler.instr_arr import *
22
from types import FunctionType as function
33
__all__ = ['Parser']
44

Binary file not shown.

tests/test_class.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22
from pathlib import Path
3-
from src.riscv_assembler.convert import AssemblyConverter as AC
4-
from src.riscv_assembler.parse import Parser
3+
from riscv_assembler.convert import AssemblyConverter as AC
4+
from riscv_assembler.parse import Parser
55
#TESTS
66

77
#test simple.s file, writes to txt and bin

0 commit comments

Comments
 (0)