Skip to content

Commit e4282a3

Browse files
committed
updated for the updated ipgen
1 parent 04f4ce5 commit e4282a3

File tree

15 files changed

+43
-33
lines changed

15 files changed

+43
-33
lines changed

examples/thread_embedded_verilog_ipcore/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ all: test
1313
.PHONY: run
1414
run:
1515
$(PYTHON) $(OPT) $(TARGET) $(ARGS)
16-
make compile run -C ipgen_*_v1_00_a/test/
16+
make compile run -C *_v1_00_a/test/
1717

1818
.PHONY: test
1919
test:
@@ -28,4 +28,4 @@ check:
2828
.PHONY: clean
2929
clean:
3030
rm -rf *.pyc __pycache__ parsetab.py .cache *.out *.png *.dot tmp.v uut.vcd
31-
rm -rf ipgen_*_v1_00_a
31+
rm -rf *_v1_00_a

examples/thread_embedded_verilog_ipcore/thread_embedded_verilog_ipcore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,4 +219,4 @@ def ctrl():
219219
"""
220220

221221
m = mkMemcpy()
222-
ipcore.to_ipcore(m, 'myipcore', simcode=simcode, iftype='axi')
222+
ipcore.to_ipcore(m, simcode=simcode, iftype='axi')

examples/thread_ipcore/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ all: test
1313
.PHONY: run
1414
run:
1515
$(PYTHON) $(OPT) $(TARGET) $(ARGS)
16-
make compile run -C ipgen_*_v1_00_a/test/
16+
make compile run -C *_v1_00_a/test/
1717

1818
.PHONY: test
1919
test:
@@ -28,4 +28,4 @@ check:
2828
.PHONY: clean
2929
clean:
3030
rm -rf *.pyc __pycache__ parsetab.py .cache *.out *.png *.dot tmp.v uut.vcd
31-
rm -rf ipgen_*_v1_00_a
31+
rm -rf *_v1_00_a

examples/thread_ipcore/thread_ipcore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,4 +190,4 @@ def ctrl():
190190
"""
191191

192192
m = mkLed()
193-
ipcore.to_ipcore(m, 'myipcore', simcode=simcode, iftype='axi')
193+
ipcore.to_ipcore(m, simcode=simcode, iftype='axi')

examples/thread_matmul_ipcore/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ all: test
1313
.PHONY: run
1414
run:
1515
$(PYTHON) $(OPT) $(TARGET) $(ARGS)
16-
make compile run -C ipgen_*_v1_00_a/test/
16+
make compile run -C *_v1_00_a/test/
1717

1818
.PHONY: test
1919
test:
@@ -28,4 +28,4 @@ check:
2828
.PHONY: clean
2929
clean:
3030
rm -rf *.pyc __pycache__ parsetab.py .cache *.out *.png *.dot tmp.v uut.vcd
31-
rm -rf ipgen_*_v1_00_a
31+
rm -rf *_v1_00_a

examples/thread_matmul_ipcore/thread_matmul_ipcore.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,5 +301,4 @@ def ctrl():
301301
"""
302302

303303
m = mkLed()
304-
ipcore.to_ipcore(m, 'myipcore', simcode=simcode,
305-
simmemimg=memname, iftype='axi')
304+
ipcore.to_ipcore(m, simcode=simcode, simmemimg=memname, iftype='axi')

examples/thread_memcpy_ipcore/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ all: test
1313
.PHONY: run
1414
run:
1515
$(PYTHON) $(OPT) $(TARGET) $(ARGS)
16-
make compile run -C ipgen_*_v1_00_a/test/
16+
make compile run -C *_v1_00_a/test/
1717

1818
.PHONY: test
1919
test:
@@ -28,4 +28,4 @@ check:
2828
.PHONY: clean
2929
clean:
3030
rm -rf *.pyc __pycache__ parsetab.py .cache *.out *.png *.dot tmp.v uut.vcd
31-
rm -rf ipgen_*_v1_00_a
31+
rm -rf *_v1_00_a

examples/thread_memcpy_ipcore/thread_memcpy_ipcore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,4 +204,4 @@ def ctrl():
204204
"""
205205

206206
m = mkMemcpy()
207-
ipcore.to_ipcore(m, 'myipcore', simcode=simcode, iftype='axi')
207+
ipcore.to_ipcore(m, simcode=simcode, iftype='axi')

examples/thread_verilog_submodule_ipcore/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ all: test
1313
.PHONY: run
1414
run:
1515
$(PYTHON) $(OPT) $(TARGET) $(ARGS)
16-
make compile run -C ipgen_*_v1_00_a/test/
16+
make compile run -C *_v1_00_a/test/
1717

1818
.PHONY: test
1919
test:
@@ -28,4 +28,4 @@ check:
2828
.PHONY: clean
2929
clean:
3030
rm -rf *.pyc __pycache__ parsetab.py .cache *.out *.png *.dot tmp.v uut.vcd
31-
rm -rf ipgen_*_v1_00_a
31+
rm -rf *_v1_00_a

examples/thread_verilog_submodule_ipcore/thread_verilog_submodule_ipcore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,4 +314,4 @@ def ctrl():
314314
"""
315315

316316
m = mkMemcpy()
317-
ipcore.to_ipcore(m, 'myipcore', simcode=simcode, iftype='axi')
317+
ipcore.to_ipcore(m, simcode=simcode, iftype='axi')

0 commit comments

Comments
 (0)