diff --git a/README.md b/README.md index 6acefc9..bc52298 100755 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # MiSTer_BIOS_Scripts -Simple scripts to automate downloading BIOS files for MiSTer console cores. +Simple scripts to automate downloading BIOS files for MiSTer console & computer cores. ## Instructions @@ -65,6 +65,11 @@ The bios-getter will download many bios files to /media/fat/BIOS. However, we ha Entertainment Computer System's EXEC-BASIC ROM, The (1978)(Mattel).bin ``` + Interact + ``` + Interact_ROM.bin + ``` + MegaCD ``` US Sega CD 2 (Region Free) 930601 l_oliveira.bin diff --git a/bios-getter.sh b/bios-getter.sh index 2e4350f..27d59b0 100755 --- a/bios-getter.sh +++ b/bios-getter.sh @@ -75,6 +75,7 @@ SYSTEMS_WITH_BIOS=( \ GAMEBOY \ GBA \ Intellivision \ + Interact \ MegaCD \ NeoGeo \ NES \ @@ -187,6 +188,12 @@ ITERATE_SYSTEMS() INTELLIVISION_BIOS ;; + interact) + GETTER_DO INSTALL_SINGLE_ROM "${SYSTEM}" 'boot.rom' \ + 'https://archive.org/download/mister-console-bios-pack_theypsilon/MiSTer_Console_BIOS_PACK.zip/Interact.zip' \ + 'Interact_ROM.bin' + ;; + megacd) GETTER_DO INSTALL_MEGACD "${SYSTEM}" ;;