2023-02-28 22:03:14 +01:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
:: Make sure we are connected
|
|
|
|
echo Detecting SC64...
|
2023-03-13 03:15:48 +01:00
|
|
|
%~dp0tools\sc64\sc64deployer list
|
2023-03-13 02:32:08 +01:00
|
|
|
|
|
|
|
:: Get the information
|
|
|
|
echo SC64 info...
|
2023-03-13 03:15:48 +01:00
|
|
|
%~dp0tools\sc64\sc64deployer info
|
2023-02-28 19:30:10 +01:00
|
|
|
|
2023-02-28 22:03:14 +01:00
|
|
|
echo:
|
|
|
|
echo:
|
|
|
|
:: Load the ROM
|
|
|
|
echo Loading ROM...
|
2023-08-05 01:37:09 +02:00
|
|
|
%~dp0tools\sc64\sc64deployer upload %~dp0output\N64FlashcartMenu.n64
|
2023-02-28 19:30:10 +01:00
|
|
|
|
2023-02-28 22:03:14 +01:00
|
|
|
echo:
|
|
|
|
echo:
|
|
|
|
:: Toggle the power of the N64 to boot the ROM.
|
|
|
|
echo !!! Now toggle power to the N64 !!!
|
|
|
|
echo:
|
|
|
|
echo:
|
2023-06-04 17:57:31 +02:00
|
|
|
|
2023-09-04 21:09:31 +02:00
|
|
|
if not "%1" == "/d" goto :not_d
|
2023-08-05 01:37:09 +02:00
|
|
|
|
|
|
|
%~dp0tools\sc64\sc64deployer debug --no-writeback
|
|
|
|
|
2023-09-04 21:09:31 +02:00
|
|
|
:not_d
|
|
|
|
|
|
|
|
if not "%1" == "/du" goto :not_du
|
|
|
|
|
|
|
|
%~dp0tools\sc64\sc64deployer debug --no-writeback --init "send-file /sc64menu.n64 @output/sc64menu.n64@;reboot"
|
|
|
|
|
|
|
|
:not_du
|