#!/bin/sh # Copy the Ch367 runtime-CLUT proof fixture. The matching GUI-fit core must # use the sh3_lpddr_fb_z640_runtime_clut profile before this host run. set -eu DEST="${1:-terasic@192.168.50.161:~}" ROOT="$(cd "$(dirname "$0")/.." && pwd)" DATA="$ROOT/sim/data/top_psmct32_raster_demo" FILES=" $ROOT/tools/ps2_sh3_sched.c $DATA/sh3_zsrt3_epochs.txt " for k in 0 1 2; do FILES="$FILES $DATA/sh3_zsrt3${k}_tex_lpddr.mem $DATA/feeder_sh3_zsrt3${k}.mem $DATA/sh3_zsrt3${k}_pal.mem" done for f in $FILES; do [ -f "$f" ] || { echo "MISSING: $f" >&2; exit 1; } done echo "Copying runtime-CLUT fixture files -> $DEST:" for f in $FILES; do echo " $(basename "$f")"; done # shellcheck disable=SC2086 exec scp $FILES "$DEST"