2021-06-29 12:27:22 +02:00
|
|
|
#!/bin/bash
|
2021-06-30 13:33:23 +02:00
|
|
|
|
|
|
|
# Path to nops executable
|
|
|
|
NOPS="nops"
|
|
|
|
|
2021-06-29 12:27:22 +02:00
|
|
|
if [ $# -eq 0 ]
|
|
|
|
then
|
|
|
|
echo "PSX Overlay Upload helper script
|
|
|
|
|
|
|
|
Upload a binary and the corresponding executable to a real PSX memory, via unirom + serial cable.
|
|
|
|
|
|
|
|
This script is dependant on NOTpsxserial being available on your system : https://github.com/JonathanDotCel/NOTPSXSerial
|
|
|
|
Edit the $NOPS value to reflect the executable path on your system, e.g :
|
|
|
|
\$NOPS = '/blah/nops'
|
2021-06-30 13:33:23 +02:00
|
|
|
Usage : ./ovly_upload_helper.sh bin_filename psx_exe_name com_port
|
2021-06-29 12:27:22 +02:00
|
|
|
|
|
|
|
- bin_filename , eg : Overlay.lvl0
|
|
|
|
- psx_exe_name, e.g : main.ps-exe
|
|
|
|
- com_port, e.g : /dev/ttyUSB0, COM1
|
|
|
|
"
|
|
|
|
else
|
2021-06-30 13:33:23 +02:00
|
|
|
# Find map file corresponding to ps-exe
|
|
|
|
MAP_FILE="`echo $2 | awk -F. '{print $1}'`.map"
|
|
|
|
# Find loading address
|
|
|
|
LOAD_ADDR="0x`cat $MAP_FILE | grep load_all_overlays_here | awk '{print $1}' | cut -c 11-`"
|
|
|
|
|
|
|
|
$NOPS /debug $3
|
|
|
|
$NOPS /fast /bin $LOAD_ADDR $1 $3
|
|
|
|
$NOPS /fast /exe $2 $3
|
|
|
|
$NOPS /slow $3
|
2021-06-29 12:27:22 +02:00
|
|
|
fi
|