Skip to content

Commit

Permalink
Add gitignore. Cleanup files
Browse files Browse the repository at this point in the history
  • Loading branch information
DMoore12 committed Apr 16, 2021
1 parent 9aa1a7d commit fdbd66f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
9 changes: 9 additions & 0 deletions examples/alchitry_cu_counter/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# MacOS desktop files
.DS_Store
.ds_store

# Yosys/Arachne outputs
*.bin
*.blif
*.ex
*.txt
6 changes: 3 additions & 3 deletions examples/alchitry_cu_counter/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

TOP_LEVEL_FILE := cu_top.sv
COMPONENT_FILES := counter.sv
COMPONENT_FILES :=

# Note: For work using an Alchitry CU, do not change package, nor device.
# Changing the package will clash with the pcf file. Changing device
Expand All @@ -28,9 +28,9 @@ DEVICE := 8k

all:
yosys -q -p "synth_ice40 -blif cu.blif" $(TOP_LEVEL_FILE) $(COMPONENT_FILES)
arachne-pnr -P $(DEVICE) -p $(PIN_DEF) -d $(DEVICE) cu.blif -o cu.txt
arachne-pnr -P $(PACKAGE) -p $(PIN_DEF) -d $(DEVICE) cu.blif -o cu.txt
icebox_explain cu.txt > cu.ex
icepack %cutxt cu.bin
icepack cu.txt cu.bin

clean:
rm -f *.blif *.txt *.ex *.bin
13 changes: 0 additions & 13 deletions examples/alchitry_cu_counter/simple.pcf

This file was deleted.

0 comments on commit fdbd66f

Please sign in to comment.