mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-25 06:17:38 -04:00
14 lines
374 B
Bash
Executable file
14 lines
374 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
make
|
|
make -C ../tests/runtime/dev
|
|
make -C ../tests/runtime/hello
|
|
make -C ../tests/runtime/nlTest
|
|
make -C ../tests/runtime/simple
|
|
|
|
./simX -a rv32i -i ../tests/runtime/dev/vx_dev_main.hex
|
|
./simX -a rv32i -i ../tests/runtime/hello/hello.hex
|
|
./simX -a rv32i -i ../tests/runtime/nlTest/vx_nl_main.hex
|
|
./simX -a rv32i -i ../tests/runtime/simple/vx_simple.hex
|