mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-07-25 19:48:26 +00:00
1) export also fast_preload bootmode (for EFCL summer school) 2) remove warnings due to non-whitespace characters in archi/utils.h 3) reset all registers in CV32E40X at boot (probably not needed, but good practice anyways)
18 lines
379 B
Bash
18 lines
379 B
Bash
#!/bin/bash -e
|
|
|
|
export PULPRT_TARGET=pulpissimo
|
|
export PULPRUN_TARGET=pulpissimo
|
|
export USE_CV32E40X=1
|
|
export CONFIG_PLUSARG_SIM=1
|
|
export bootmode=fast_debug
|
|
|
|
if [ -n "${ZSH_VERSION:-}" ]; then
|
|
DIR="$(readlink -f -- "${(%):-%x}")"
|
|
scriptDir="$(dirname $DIR)"
|
|
else
|
|
|
|
scriptDir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
fi
|
|
|
|
source $scriptDir/common.sh
|