pulp-runtime/configs/pulpissimo_cv32e40x.sh
Francesco Conti 7ea5a725e4 Quality-of-life changes
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)
2024-05-25 20:33:59 +02:00

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