example_designs/test: add Makefile and test on de0nano

This commit is contained in:
Florent Kermarrec 2015-09-27 18:16:10 +02:00
parent d316948c87
commit c436e160b6
2 changed files with 15 additions and 2 deletions

View File

@ -0,0 +1,13 @@
COREDIR = ../../
PYTHON = python3
SERIAL ?= 2
CMD = PYTHONPATH=$(COREDIR) $(PYTHON) make.py --port $(SERIAL)
test_io:
$(CMD) test_io
test_la:
$(CMD) test_la
all: test_io test_la

View File

@ -1,9 +1,9 @@
import csv
from struct import *
from migen.fhdl.structure import *
from litescope.software.dump import *
from litescope.software.driver.truthtable import *
import csv
class LiteScopeLADriver():
def __init__(self, regs, name, config_csv=None, clk_freq=None, debug=False):
@ -24,7 +24,7 @@ class LiteScopeLADriver():
self.get_config()
self.get_layout()
self.build()
self.data = Dat(self.dw)
self.data = DumpData(self.dw)
def get_config(self):
csv_reader = csv.reader(open(self.config_csv), delimiter=',', quotechar='#')