diff --git a/src/osdep/amiberry_whdbooter.cpp b/src/osdep/amiberry_whdbooter.cpp index ab6930fb..f0d47a61 100644 --- a/src/osdep/amiberry_whdbooter.cpp +++ b/src/osdep/amiberry_whdbooter.cpp @@ -291,41 +291,51 @@ void symlink_roms(struct uae_prefs* p) // *** KICKSTARTS *** // char kick_path[MAX_DPATH]; + char kick_long[MAX_DPATH]; int rom_test; int roms[2]; // here we can do some checks for Kickstarts we might need to make symlinks for - strncpy(currentDir, start_path_data, MAX_DPATH); - snprintf(kick_path, MAX_DPATH, "%s/whdboot/boot-data/Devs/Kickstarts/kick33180.A500", start_path_data); + strncpy(currentDir, start_path_data, MAX_DPATH); + + + // are we using save-data/ ? + snprintf(kick_path, MAX_DPATH, "%s/whdboot/save-data/Kickstarts", start_path_data); + // otherwise, use the old route + if (!my_existsdir(kick_path)) + snprintf(kick_path, MAX_DPATH, "%s/whdboot/game-data/Devs/Kickstarts", start_path_data); - if (!zfile_exists(kick_path)) + + // do the checks... + snprintf(kick_long, MAX_DPATH, "%s/kick33180.A500", kick_path); + if (!zfile_exists(kick_long)) { roms[0] = 5; // kickstart 1.2 A500 rom_test = configure_rom(p, roms, 0); // returns 0 or 1 if found or not found if (rom_test == 1) - symlink(p->romfile, kick_path); + symlink(p->romfile, kick_long); } - snprintf(kick_path, MAX_DPATH, "%s/whdboot/boot-data/Devs/Kickstarts/kick34005.A500", start_path_data); - if (!zfile_exists(kick_path)) + snprintf(kick_long, MAX_DPATH, "%s/kick34005.A500", kick_path); + if (!zfile_exists(kick_long)) { roms[0] = 6; // kickstart 1.3 A500 rom_test = configure_rom(p, roms, 0); // returns 0 or 1 if found or not found - printf(p->romfile); - printf("result: %d\n", rom_test); + //printf(p->romfile); + //printf("result: %d\n", rom_test); if (rom_test == 1) - symlink(p->romfile, kick_path); + symlink(p->romfile, kick_long); } - snprintf(kick_path, MAX_DPATH, "%s/whdboot/boot-data/Devs/Kickstarts/kick40068.A1200", start_path_data); - if (!zfile_exists(kick_path)) + snprintf(kick_long, MAX_DPATH, "%s/kick40068.A1200", kick_path); + if (!zfile_exists(kick_long)) { roms[0] = 15; // kickstart 3.1 A1200 rom_test = configure_rom(p, roms, 0); // returns 0 or 1 if found or not found if (rom_test == 1) - symlink(p->romfile, kick_path); + symlink(p->romfile, kick_long); } } @@ -340,6 +350,7 @@ void whdload_auto_prefs(struct uae_prefs* p, char* filepath) TCHAR tmp2[MAX_DPATH]; char boot_path[MAX_DPATH]; + char save_path[MAX_DPATH]; char config_path[MAX_DPATH]; // char GameTypePath[MAX_DPATH]; char whd_config[255]; @@ -567,10 +578,17 @@ void whdload_auto_prefs(struct uae_prefs* p, char* filepath) else _tcscpy(p->description, _T("WHDLoad AutoBoot Configuration [AGA]")); + + //SET THE WHD BOOTER AND GAME DATA - snprintf(boot_path, MAX_DPATH, "%s/whdboot/boot-data/", start_path_data); + snprintf(boot_path, MAX_DPATH, "%s/whdboot/boot-data.zip", start_path_data); + if (!zfile_exists(boot_path)) + snprintf(boot_path, MAX_DPATH, "%s/whdboot/boot-data/", start_path_data); + + + // set the first (whdboot) Drive _stprintf(tmp,_T("filesystem2=rw,DH0:DH0:%s,10"), boot_path); txt2 = parsetextpath(_T(tmp)); @@ -589,6 +607,25 @@ void whdload_auto_prefs(struct uae_prefs* p, char* filepath) txt2 = parsetextpath(_T(tmp)); cfgfile_parse_line(p, txt2, 0); + //set the third (save data) drive + snprintf(save_path, MAX_DPATH, "%s/whdboot/save-data/", start_path_data); + + if (my_existsdir(save_path)) + { + _stprintf(tmp, "filesystem2=rw,DH2:saves:%s,0", save_path); + txt2 = parsetextpath(_T(tmp)); + cfgfile_parse_line(p, txt2, 0); + + _stprintf(tmp, "uaehf2=dir,rw,DH2:saves:%s,0", save_path); + txt2 = parsetextpath(_T(tmp)); + cfgfile_parse_line(p, txt2, 0); + } + + + + + + //APPLY THE SETTINGS FOR MOUSE/JOYSTICK ETC // CD32 if ((static_cast(is_cd32) && strcmpi(game_detail.port0,"nul") == 0) diff --git a/whdboot/boot-data.zip b/whdboot/boot-data.zip new file mode 100644 index 00000000..462e0a24 Binary files /dev/null and b/whdboot/boot-data.zip differ diff --git a/whdboot/boot-data/C/Assign b/whdboot/boot-data/C/Assign deleted file mode 100755 index a801a0db..00000000 Binary files a/whdboot/boot-data/C/Assign and /dev/null differ diff --git a/whdboot/boot-data/C/Copy b/whdboot/boot-data/C/Copy deleted file mode 100755 index 53e4f20e..00000000 Binary files a/whdboot/boot-data/C/Copy and /dev/null differ diff --git a/whdboot/boot-data/C/Dir b/whdboot/boot-data/C/Dir deleted file mode 100755 index e1d0f147..00000000 Binary files a/whdboot/boot-data/C/Dir and /dev/null differ diff --git a/whdboot/boot-data/C/DiskInDrive b/whdboot/boot-data/C/DiskInDrive deleted file mode 100755 index 9b1b653f..00000000 Binary files a/whdboot/boot-data/C/DiskInDrive and /dev/null differ diff --git a/whdboot/boot-data/C/Ed b/whdboot/boot-data/C/Ed deleted file mode 100755 index c4c1e17d..00000000 Binary files a/whdboot/boot-data/C/Ed and /dev/null differ diff --git a/whdboot/boot-data/C/Execute b/whdboot/boot-data/C/Execute deleted file mode 100755 index 0c3e2e77..00000000 Binary files a/whdboot/boot-data/C/Execute and /dev/null differ diff --git a/whdboot/boot-data/C/GetMouseInput b/whdboot/boot-data/C/GetMouseInput deleted file mode 100755 index d094ab9d..00000000 Binary files a/whdboot/boot-data/C/GetMouseInput and /dev/null differ diff --git a/whdboot/boot-data/C/Info b/whdboot/boot-data/C/Info deleted file mode 100755 index ea49c23b..00000000 Binary files a/whdboot/boot-data/C/Info and /dev/null differ diff --git a/whdboot/boot-data/C/List b/whdboot/boot-data/C/List deleted file mode 100755 index 7dd330ae..00000000 Binary files a/whdboot/boot-data/C/List and /dev/null differ diff --git a/whdboot/boot-data/C/Makedir b/whdboot/boot-data/C/Makedir deleted file mode 100755 index ce777b80..00000000 Binary files a/whdboot/boot-data/C/Makedir and /dev/null differ diff --git a/whdboot/boot-data/C/Rename b/whdboot/boot-data/C/Rename deleted file mode 100755 index 1365d1f7..00000000 Binary files a/whdboot/boot-data/C/Rename and /dev/null differ diff --git a/whdboot/boot-data/C/Search b/whdboot/boot-data/C/Search deleted file mode 100755 index dcd025d7..00000000 Binary files a/whdboot/boot-data/C/Search and /dev/null differ diff --git a/whdboot/boot-data/C/Type b/whdboot/boot-data/C/Type deleted file mode 100755 index 9278d2eb..00000000 Binary files a/whdboot/boot-data/C/Type and /dev/null differ diff --git a/whdboot/boot-data/C/Version b/whdboot/boot-data/C/Version deleted file mode 100755 index c40ef156..00000000 Binary files a/whdboot/boot-data/C/Version and /dev/null differ diff --git a/whdboot/boot-data/C/WHDLoad b/whdboot/boot-data/C/WHDLoad deleted file mode 100755 index 90e9c98b..00000000 Binary files a/whdboot/boot-data/C/WHDLoad and /dev/null differ diff --git a/whdboot/boot-data/C/Wait b/whdboot/boot-data/C/Wait deleted file mode 100755 index df0d06ef..00000000 Binary files a/whdboot/boot-data/C/Wait and /dev/null differ diff --git a/whdboot/boot-data/C/delete b/whdboot/boot-data/C/delete deleted file mode 100755 index 95afa943..00000000 Binary files a/whdboot/boot-data/C/delete and /dev/null differ diff --git a/whdboot/boot-data/C/joytest b/whdboot/boot-data/C/joytest deleted file mode 100755 index f1ac9caf..00000000 Binary files a/whdboot/boot-data/C/joytest and /dev/null differ diff --git a/whdboot/boot-data/C/jst b/whdboot/boot-data/C/jst deleted file mode 100755 index 2bba40c6..00000000 Binary files a/whdboot/boot-data/C/jst and /dev/null differ diff --git a/whdboot/boot-data/C/kgiconload b/whdboot/boot-data/C/kgiconload deleted file mode 100755 index ed7d0759..00000000 Binary files a/whdboot/boot-data/C/kgiconload and /dev/null differ diff --git a/whdboot/boot-data/Devs/Kickstarts/kick33180.A500.RTB b/whdboot/boot-data/Devs/Kickstarts/kick33180.A500.RTB deleted file mode 100755 index 89fba0b7..00000000 Binary files a/whdboot/boot-data/Devs/Kickstarts/kick33180.A500.RTB and /dev/null differ diff --git a/whdboot/boot-data/Devs/Kickstarts/kick33192.A500.RTB b/whdboot/boot-data/Devs/Kickstarts/kick33192.A500.RTB deleted file mode 100755 index 89fba0b7..00000000 Binary files a/whdboot/boot-data/Devs/Kickstarts/kick33192.A500.RTB and /dev/null differ diff --git a/whdboot/boot-data/Devs/Kickstarts/kick34005.A500.RTB b/whdboot/boot-data/Devs/Kickstarts/kick34005.A500.RTB deleted file mode 100755 index 2407ca0b..00000000 Binary files a/whdboot/boot-data/Devs/Kickstarts/kick34005.A500.RTB and /dev/null differ diff --git a/whdboot/boot-data/Devs/Kickstarts/kick40063.A600.RTB b/whdboot/boot-data/Devs/Kickstarts/kick40063.A600.RTB deleted file mode 100755 index bf69abda..00000000 Binary files a/whdboot/boot-data/Devs/Kickstarts/kick40063.A600.RTB and /dev/null differ diff --git a/whdboot/boot-data/Devs/Kickstarts/kick40068.A1200.RTB b/whdboot/boot-data/Devs/Kickstarts/kick40068.A1200.RTB deleted file mode 100755 index 0b33bd12..00000000 Binary files a/whdboot/boot-data/Devs/Kickstarts/kick40068.A1200.RTB and /dev/null differ diff --git a/whdboot/boot-data/Devs/Kickstarts/kick40068.A4000.RTB b/whdboot/boot-data/Devs/Kickstarts/kick40068.A4000.RTB deleted file mode 100755 index b8c64be1..00000000 Binary files a/whdboot/boot-data/Devs/Kickstarts/kick40068.A4000.RTB and /dev/null differ diff --git a/whdboot/boot-data/Devs/system-configuration b/whdboot/boot-data/Devs/system-configuration deleted file mode 100755 index f7b77c40..00000000 Binary files a/whdboot/boot-data/Devs/system-configuration and /dev/null differ diff --git a/whdboot/boot-data/Libs/68040.library b/whdboot/boot-data/Libs/68040.library deleted file mode 100755 index cfde6a3e..00000000 Binary files a/whdboot/boot-data/Libs/68040.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/amigaguide.library b/whdboot/boot-data/Libs/amigaguide.library deleted file mode 100755 index 876615b8..00000000 Binary files a/whdboot/boot-data/Libs/amigaguide.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/amos.library b/whdboot/boot-data/Libs/amos.library deleted file mode 100755 index 8efe9082..00000000 Binary files a/whdboot/boot-data/Libs/amos.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/asl.library b/whdboot/boot-data/Libs/asl.library deleted file mode 100755 index 4e2bfd55..00000000 Binary files a/whdboot/boot-data/Libs/asl.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/datatypes.library b/whdboot/boot-data/Libs/datatypes.library deleted file mode 100755 index 36ccf22b..00000000 Binary files a/whdboot/boot-data/Libs/datatypes.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/diskfont.library b/whdboot/boot-data/Libs/diskfont.library deleted file mode 100755 index cca45b0c..00000000 Binary files a/whdboot/boot-data/Libs/diskfont.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/explode.library b/whdboot/boot-data/Libs/explode.library deleted file mode 100755 index 2b375a95..00000000 Binary files a/whdboot/boot-data/Libs/explode.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/iff.library b/whdboot/boot-data/Libs/iff.library deleted file mode 100755 index 9e63ee8d..00000000 Binary files a/whdboot/boot-data/Libs/iff.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/iffparse.library b/whdboot/boot-data/Libs/iffparse.library deleted file mode 100755 index 737767f0..00000000 Binary files a/whdboot/boot-data/Libs/iffparse.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/locale.library b/whdboot/boot-data/Libs/locale.library deleted file mode 100755 index 5a25dcff..00000000 Binary files a/whdboot/boot-data/Libs/locale.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/lowlevel.library b/whdboot/boot-data/Libs/lowlevel.library deleted file mode 100755 index f200bfcd..00000000 Binary files a/whdboot/boot-data/Libs/lowlevel.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/mathieeedoubbas.library b/whdboot/boot-data/Libs/mathieeedoubbas.library deleted file mode 100755 index 1d9b48da..00000000 Binary files a/whdboot/boot-data/Libs/mathieeedoubbas.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/mathieeedoubtrans.library b/whdboot/boot-data/Libs/mathieeedoubtrans.library deleted file mode 100755 index ab0f76ea..00000000 Binary files a/whdboot/boot-data/Libs/mathieeedoubtrans.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/mathieeesingtrans.library b/whdboot/boot-data/Libs/mathieeesingtrans.library deleted file mode 100755 index eed739ea..00000000 Binary files a/whdboot/boot-data/Libs/mathieeesingtrans.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/mathtrans.library b/whdboot/boot-data/Libs/mathtrans.library deleted file mode 100755 index 4c0ed052..00000000 Binary files a/whdboot/boot-data/Libs/mathtrans.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/medplayer.library b/whdboot/boot-data/Libs/medplayer.library deleted file mode 100755 index ed30bda3..00000000 Binary files a/whdboot/boot-data/Libs/medplayer.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/nonvolatile.library b/whdboot/boot-data/Libs/nonvolatile.library deleted file mode 100755 index 60da0ea8..00000000 Binary files a/whdboot/boot-data/Libs/nonvolatile.library and /dev/null differ diff --git a/whdboot/boot-data/Libs/xpkmaster.library b/whdboot/boot-data/Libs/xpkmaster.library deleted file mode 100755 index e007ee92..00000000 Binary files a/whdboot/boot-data/Libs/xpkmaster.library and /dev/null differ diff --git a/whdboot/boot-data/S/startup-sequence b/whdboot/boot-data/S/startup-sequence deleted file mode 100755 index 3e40ce15..00000000 --- a/whdboot/boot-data/S/startup-sequence +++ /dev/null @@ -1,101 +0,0 @@ -C:Assign ENV: RAM: >nil: -C:Assign T: RAM: >nil: -C:Assign PROGDIR: C: >nil: - -cd :WHDbooter/ -c:run SplashScreen -c:wait 2 - -Resident C:WHDLoad PURE -Echo "" - - -; ====================== -IF EXISTS C:SetPatch - C:SetPatch > NIL: -ENDIF - - - -; ====================== Set path -info >t:tempfile DH1: -search >nil: t:tempfile "read" - -if not warn - Assign WHDLoadGame: DH1: - echo "WHDLoadGame: will be mapped to DH1:" - Echo "" -else - Assign WHDLoadGame: DH0: - echo "WHDLoadGame: will be mapped to DH0:" - Echo "" -endif - -; ====================== - - C:GetMouseInput Local - IF $MouseInput EQ 1 - Echo "Left Mouse Button held. Force creation of new Auto-Startup file" - Echo "" - c:wait 4 - - ELSE - - SET Reply `C:joytest 1 0` - IF $Reply EQ "(Fire-1)" - Echo "Joystick Fire held. Force creation of new Auto-Startup file" - Echo "" - c:wait 4 - - ELSE - Echo "Scan for auto-startup and debugging messages..." - - cd :WHDbooter/ - Find_AutoStartup - - Echo "Scan done" - Echo "" - - ENDIF - ENDIF - - -; ======= did we create a file earlier? -IF EXISTS T:auto-startup - Echo "" -ELSE - cd :WHDbooter/ - c:wait 2 - GameBootLoader scanpath=WHDLoadGame: only usefolderpath -ENDIF - - -; ====================== -;IF EXISTS :WHDbooter/SplashScreen -; cd :WHDbooter -; :WHDbooter/SplashScreen >NIL: -;ELSE -; c:TUDE hardreset >nil: -;ENDIF - - - - -; +++ RUN IT - -IF EXISTS T:auto-startup - Echo "Execute the Auto-Startup boot script." - Echo "" - c:execute T:auto-startup -ELSE - echo "Error: There is still no Auto-Startup boot script." - -ENDIF - - -; c:TUDE hardreset >nil: - - - - - diff --git a/whdboot/boot-data/S/whdload.prefs b/whdboot/boot-data/S/whdload.prefs deleted file mode 100755 index f69f4c0a..00000000 --- a/whdboot/boot-data/S/whdload.prefs +++ /dev/null @@ -1,32 +0,0 @@ -; -; global configuration file for WHDLoad -; searched as "S:whdload.prefs" -; -; CLI-Arguments and ToolTypes will overwrite these ! -; - -NoWriteCache ;disable the disk write cache -QuitKey=$5a ;rawkey code to quit -SplashDelay=0 ;time to display splash window (1/50 seconds) -SavePath=dh0:WHDBooter/Savegames/ - -;ButtonWait ;wait for button pressed (slave must support this) -;ChipNoCache ;disable cachebility of Chip-Memory -;CoreDumpPath=T: ;path for coredump files -;DebugKey=$5b ;rawkey code to quit with coredump (debug) -;ExecuteStartup=rx offline.rexx ;command to execute on WHDLoad startup -;ExecuteCleanup=rx online.rexx ;command to execute on WHDLoad exit -;Expert ;selects expert mode -;FreezeKey=$5d ;rawkey code to enter HrtMon/TK -;MMU ;use MMU (for 68030) -;NoAutoVec ;ignore unwanted autovector interrupts -;NoFilter ;disable audio filter -;NoFlushMem ;do not flush memory -;NoMemReverse ;do not allocate memory reverse -;ReadDelay=150 ;wait after reading from disk (1/50 seconds) -;RestartKey=$5c ;rawkey code to restart -;ShowRegs=SYS:Utilities/MuchMore W WL=80 WT=80 WW=582 WH=700 ;command for Show Regs -;WriteDelay=150 ;wait after saving something to disk (1/50 seconds) - - - diff --git a/whdboot/boot-data/WHDBooter/Find_AutoStartup b/whdboot/boot-data/WHDBooter/Find_AutoStartup deleted file mode 100755 index d2ef4c2d..00000000 Binary files a/whdboot/boot-data/WHDBooter/Find_AutoStartup and /dev/null differ diff --git a/whdboot/boot-data/WHDBooter/GameBootLoader b/whdboot/boot-data/WHDBooter/GameBootLoader deleted file mode 100755 index 375b9cd2..00000000 Binary files a/whdboot/boot-data/WHDBooter/GameBootLoader and /dev/null differ diff --git a/whdboot/boot-data/WHDBooter/Splash/intro_000A.iff b/whdboot/boot-data/WHDBooter/Splash/intro_000A.iff deleted file mode 100755 index 04724353..00000000 Binary files a/whdboot/boot-data/WHDBooter/Splash/intro_000A.iff and /dev/null differ diff --git a/whdboot/boot-data/WHDBooter/SplashScreen b/whdboot/boot-data/WHDBooter/SplashScreen deleted file mode 100755 index fc6ce8ec..00000000 Binary files a/whdboot/boot-data/WHDBooter/SplashScreen and /dev/null differ diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/1943.ws b/whdboot/boot-data/WHDBooter/WSConfigs/1943.ws deleted file mode 100755 index 2363a01c..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/1943.ws +++ /dev/null @@ -1 +0,0 @@ -C1:B:Infinite Lives; \ No newline at end of file diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/AfterBurnerActivision.ws b/whdboot/boot-data/WHDBooter/WSConfigs/AfterBurnerActivision.ws deleted file mode 100755 index 692555c4..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/AfterBurnerActivision.ws +++ /dev/null @@ -1,2 +0,0 @@ -C1:B:Infinite Lives; -C2:B:Infinite Missiles; \ No newline at end of file diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/AlienBreed2.ws b/whdboot/boot-data/WHDBooter/WSConfigs/AlienBreed2.ws deleted file mode 100755 index d918d494..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/AlienBreed2.ws +++ /dev/null @@ -1 +0,0 @@ -C1:B:Infinite Energy & Lives; \ No newline at end of file diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/AlienBreed3D.ws b/whdboot/boot-data/WHDBooter/WSConfigs/AlienBreed3D.ws deleted file mode 100755 index 54e5400d..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/AlienBreed3D.ws +++ /dev/null @@ -1,4 +0,0 @@ -C1:B:Enable Trainers:0; -C2:L:Mouse Control Mode:None,LMB forward / RMB fire,LMB fire / RMB forward; -C3:B:Load Aminet Version (abd8ch):0; -C4:B:Enable main music at the end (HackAB3D):0; \ No newline at end of file diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/AlienBreed3Ddemo.ws b/whdboot/boot-data/WHDBooter/WSConfigs/AlienBreed3Ddemo.ws deleted file mode 100755 index 51a2d4d0..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/AlienBreed3Ddemo.ws +++ /dev/null @@ -1,2 +0,0 @@ -C1:C:Enable Trainers; -C2:X:Load Rolling Demo; \ No newline at end of file diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/CarVup.ws b/whdboot/boot-data/WHDBooter/WSConfigs/CarVup.ws deleted file mode 100755 index d34f75d2..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/CarVup.ws +++ /dev/null @@ -1,3 +0,0 @@ -C1:X:Enable in-game Trainers; -C2:X:Enable CD32 Controls; - diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/Cybernoid 2.ws b/whdboot/boot-data/WHDBooter/WSConfigs/Cybernoid 2.ws deleted file mode 100755 index 4f81e93c..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/Cybernoid 2.ws +++ /dev/null @@ -1,6 +0,0 @@ -C1:X:Infinite Lives:0; -C1:X:Infinite Weapons:1; -C1:X:Infinite Level Timer:2; -C1:X:Infinite Screen Timer:3; -C1:X:Enable Level Skip:4; -C2:B:Infinite Enable CD32 Controls; \ No newline at end of file diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/Cybernoid.ws b/whdboot/boot-data/WHDBooter/WSConfigs/Cybernoid.ws deleted file mode 100755 index 4f81e93c..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/Cybernoid.ws +++ /dev/null @@ -1,6 +0,0 @@ -C1:X:Infinite Lives:0; -C1:X:Infinite Weapons:1; -C1:X:Infinite Level Timer:2; -C1:X:Infinite Screen Timer:3; -C1:X:Enable Level Skip:4; -C2:B:Infinite Enable CD32 Controls; \ No newline at end of file diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/DalekAttack.ws b/whdboot/boot-data/WHDBooter/WSConfigs/DalekAttack.ws deleted file mode 100755 index 45875569..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/DalekAttack.ws +++ /dev/null @@ -1,2 +0,0 @@ -C1:X:Player 1 Unlimited Lives; -C2:X:Player 2 Unlimited Lives ?; diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/Exile.ws b/whdboot/boot-data/WHDBooter/WSConfigs/Exile.ws deleted file mode 100755 index 9ce789e5..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/Exile.ws +++ /dev/null @@ -1 +0,0 @@ -C1:B:Faster Boot Option; diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/Flaschbier.ws b/whdboot/boot-data/WHDBooter/WSConfigs/Flaschbier.ws deleted file mode 100755 index 9a664826..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/Flaschbier.ws +++ /dev/null @@ -1,2 +0,0 @@ -C1:X:Skip Intro; -C2:L:Select Speed:Fast,Normal,Slow; \ No newline at end of file diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/Gauntlet 2.ws b/whdboot/boot-data/WHDBooter/WSConfigs/Gauntlet 2.ws deleted file mode 100755 index 9ce789e5..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/Gauntlet 2.ws +++ /dev/null @@ -1 +0,0 @@ -C1:B:Faster Boot Option; diff --git a/whdboot/boot-data/WHDBooter/WSConfigs/SuperCars 2.ws b/whdboot/boot-data/WHDBooter/WSConfigs/SuperCars 2.ws deleted file mode 100755 index 491f9997..00000000 --- a/whdboot/boot-data/WHDBooter/WSConfigs/SuperCars 2.ws +++ /dev/null @@ -1,3 +0,0 @@ -C1:X:Activate Original Cheat; -C2:L:Select Track:None,Track 1,Track 2,Track 3,Track 4,Track 5,Track 6,Track 7; -C3:X:Raise Panel (NTSC); \ No newline at end of file diff --git a/whdboot/boot-data/WHDBooter/Autoboots/foo.txt b/whdboot/save-data/Autoboots/foo.txt similarity index 100% rename from whdboot/boot-data/WHDBooter/Autoboots/foo.txt rename to whdboot/save-data/Autoboots/foo.txt diff --git a/whdboot/boot-data/WHDBooter/Debugs/foo.txt b/whdboot/save-data/Debugs/foo.txt similarity index 100% rename from whdboot/boot-data/WHDBooter/Debugs/foo.txt rename to whdboot/save-data/Debugs/foo.txt diff --git a/whdboot/boot-data/WHDBooter/Savegames/foo.txt b/whdboot/save-data/Kickstarts/foo.txt similarity index 100% rename from whdboot/boot-data/WHDBooter/Savegames/foo.txt rename to whdboot/save-data/Kickstarts/foo.txt diff --git a/whdboot/save-data/Savegames/foo.txt b/whdboot/save-data/Savegames/foo.txt new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/whdboot/save-data/Savegames/foo.txt @@ -0,0 +1 @@ +