-
Notifications
You must be signed in to change notification settings - Fork 0
/
cp64FC.sh
executable file
·17 lines (16 loc) · 907 Bytes
/
cp64FC.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
:
# Run on Real Hardware (Nintendo 64)
# Needs usb64.exe ( https://krikzz.com/pub/support/everdrive-64/x-series/dev/usb64-v1.0.0.3.zip )
# This script is for Windows WSL (Windows Subsystem for Linux), since USB64 is a Windows tool.
z64file=smsPlus64.z64
[ -f $z64file ] || { echo "$z64file not found"; exit 1; }
# Note: usb64.exe must be in the same directory as this script and smsPlus64.z64, otherwise the rom will not start.
# Also, the usb cable must be connected to the N64 and the PC and the console must be in the everdrive menu.
# check optional commandline parameter -c for copy only.
echo "Copying $z64file to Nintendo 64"
./usb64.exe -cp $z64file sd:menu/emulators/$z64file
./usb64.exe -cp $z64file sd:$z64file
#./usb64.exe -cp $z64file sd:ED64/emu/nes.v64
./usb64.exe -cp $z64file sd:ED64/emu/gen.v64
./usb64.exe -cp N64FlashcartMenu.n64 sd:NetworkFusion/N64FlashcartMenu.n64
# End of run64.sh