for l in ifile.readlines():
l = l.strip()
l = l.split("\t")
- print l
name = l[0]
count = int(l[1])
spec = self.read_spec(name)
for l in sfile.readlines():
l = l.strip()
l = l.split("\t")
- print l
d = {'name': l[0]}
if l[1] == 'out':
d['action'] = True
# project module imports
from interface_decl import Interfaces, mux_interface, io_interface
-from wire_def import muxwire, generic_io
+from wire_def import muxwire
from parse import Parse
from actual_pinmux import init
from bus_transactors import axi4_lite