2019-03-30 20:02:18 -07:00
|
|
|
#!/usr/bin/env bash
|
2015-03-06 18:52:38 +02:00
|
|
|
|
2020-10-21 02:19:51 -07:00
|
|
|
set -e
|
|
|
|
|
|
2019-03-30 20:02:18 -07:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
|
2020-10-21 02:19:51 -07:00
|
|
|
"$DIR"/make-parallel or1ksim
|
|
|
|
|
|
|
|
|
|
qemu-system-or1k -nographic -M or1k-sim -cpu any \
|
|
|
|
|
-kernel build-or1ksim/lk.elf $@
|
|
|
|
|
|
|
|
|
|
#or1k-elf-sim -f platform/or1ksim/or1ksim.cfg build-or1ksim/lk.elf $@
|