mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-17 20:02:53 +08:00
b9d3c5ac5c
~10 real bugs -mostly name mismatches and bit range mistakes
11 lines
149 B
Bash
Executable File
11 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#Linting in Verilator
|
|
verilator --lint-only -F elink.cmd -DTARGET_VERILATOR
|
|
|
|
#Compiling sim
|
|
iverilog -f elink.cmd
|
|
|
|
#Running sim
|
|
./a.out
|