Add LFSR
Add an LFSR library. It will be used to calculate CRCs (for now). Signed-off-by: Sean Anderson <seanga2@gmail.com>
This commit is contained in:
parent
83216ea1e9
commit
d72a7b7e1e
|
@ -0,0 +1,3 @@
|
|||
[submodule "verilog-lfsr"]
|
||||
path = lib/verilog-lfsr
|
||||
url = ../verilog-lfsr.git
|
|
@ -0,0 +1,19 @@
|
|||
Copyright (c) 2016 Alex Forencich
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
10
Makefile
10
Makefile
|
@ -18,8 +18,13 @@ FORCE:
|
|||
log:
|
||||
mkdir $@
|
||||
|
||||
LIBDIRS := rtl lib/verilog-lfsr/rtl
|
||||
%.synth.json: %.v | log
|
||||
$(SYNTH) -q -E $@.d -p "synth_ice40 -top $(*F)" -b json -o $@ -f verilog $< -l log/$(*F).synth
|
||||
( \
|
||||
echo "read_verilog -sv $<"; \
|
||||
echo "hierarchy $(addprefix -libdir ,$(LIBDIRS) $(<D))"; \
|
||||
echo "synth_ice40 -top $(*F)"; \
|
||||
) | $(SYNTH) -q -E $@.d -s /dev/stdin -b json -o $@ -l log/$(*F).synth
|
||||
|
||||
define run-jsontov =
|
||||
( grep timescale $*.v; $(SYNTH) -q -p "write_verilog -defparam -noattr" -f json $< ) > $@
|
||||
|
@ -36,7 +41,8 @@ IFLAGS := -g2012 -gspecify -Wall -Wno-timescale
|
|||
EXTRA_V := rtl/iverilog_dump.v
|
||||
|
||||
define run-icarus =
|
||||
$(ICARUS) $(IFLAGS) -I$(<D) -y$(<D) -M$@.pre -DTOP=$(TOP) -s $(TOP) -s iverilog_dump -o $@ $< $(EXTRA_V) && \
|
||||
$(ICARUS) $(IFLAGS) -I$(<D) $(addprefix -y,$(LIBDIRS) $(<D)) -M$@.pre -DTOP=$(TOP) \
|
||||
-s $(TOP) -s iverilog_dump -o $@ $< $(EXTRA_V) && \
|
||||
( echo -n "$@: " && tr '\n' ' ' ) < $@.pre > $@.d; RET=$$?; rm -f $@.pre; exit $$RET
|
||||
endef
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 2ae88c6953d7434411c0f90f9f09e78c2361a6ad
|
Loading…
Reference in New Issue