mirror of
https://github.com/Lukas0025/POC1-SIMD-DNA.git
synced 2025-04-05 07:11:32 +01:00
9 lines
217 B
Python
9 lines
217 B
Python
class Assembly:
|
|
def __init__(self, asm):
|
|
# remove whitespaces
|
|
asm = asm.strip()
|
|
# load macros from file
|
|
self.macros = self.parseMacros(asm)
|
|
|
|
def parseMacros(self, asm):
|
|
|