mirror of https://github.com/zachjs/sv2v.git
7 lines
209 B
Bash
7 lines
209 B
Bash
|
|
#!/bin/bash
|
||
|
|
python gen.py 4 b 2 01xz > binary.sv
|
||
|
|
python gen.py 2 o 8 01234567xz > octal.sv
|
||
|
|
python gen.py 2 d 10 0123456789 > decimal.sv
|
||
|
|
python gen.py 2 h 16 0123456789abcdefxz > hex.sv
|
||
|
|
source ../lib/runner.sh
|