mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-29 09:09:47 +02:00
- Add script to drop parameters from VCDs. - Bump the version of iverilog used in CI. I couldn't use anything never than eab37efb due a pending iverilog issue. - Standardize around Python 3 in test cases.
7 lines
213 B
Bash
Executable File
7 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
python3 gen.py 4 b 2 01xz > binary.sv
|
|
python3 gen.py 2 o 8 01234567xz > octal.sv
|
|
python3 gen.py 2 d 10 0123456789 > decimal.sv
|
|
python3 gen.py 2 h 16 0123456789abcdefxz > hex.sv
|
|
source ../lib/runner.sh
|