mirror of
https://github.com/MiSTer-devel/InputTest_MiSTer.git
synced 2026-04-19 03:04:18 +00:00
18 lines
288 B
Bash
Executable File
18 lines
288 B
Bash
Executable File
# Make C code
|
|
cd src
|
|
make clean
|
|
make all
|
|
cd ..
|
|
|
|
# Verilate HDL
|
|
cd verilator
|
|
./verilate.sh
|
|
cd ..
|
|
|
|
# Hexify roms
|
|
od -An -t x1 -v src/os.bin > verilator/rom.hex
|
|
od -An -t x1 -v src/os.bin > rtl/rom.hex
|
|
od -An -t x1 -v MiSTer.pf > verilator/font.hex
|
|
od -An -t x1 -v MiSTer.pf > rtl/font.hex
|
|
|