Fix support to select clones.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2017-09-29 20:58:13 +01:00
parent 0f8f7da2b8
commit 1334d461b4
8 changed files with 17 additions and 2 deletions

View file

@ -118,7 +118,8 @@ namespace
REGSAVE(TEXT(REGVALUE_SLOT5), (DWORD)g_Slot5);
}
const std::vector<eApple2Type> computerTypes = {A2TYPE_APPLE2, A2TYPE_APPLE2PLUS, A2TYPE_APPLE2E, A2TYPE_APPLE2EENHANCED};
const std::vector<eApple2Type> computerTypes = {A2TYPE_APPLE2, A2TYPE_APPLE2PLUS, A2TYPE_APPLE2E, A2TYPE_APPLE2EENHANCED,
A2TYPE_PRAVETS82, A2TYPE_PRAVETS8M, A2TYPE_PRAVETS8A, A2TYPE_TK30002E};
int getApple2ComputerType()
{

View file

@ -8,5 +8,10 @@
<file>resources/Hddrvr.bin</file>
<file>resources/Parallel.rom</file>
<file>resources/MouseInterface.rom</file>
<file>resources/Apple2_Plus.rom</file>
<file>resources/PRAVETS8C.ROM</file>
<file>resources/PRAVETS8M.ROM</file>
<file>resources/PRAVETS82.ROM</file>
<file>resources/TK3000e.rom</file>
</qresource>
</RCC>

View file

@ -0,0 +1 @@
../../../../resource/Apple2_Plus.rom

View file

@ -0,0 +1 @@
../../../../resource/PRAVETS82.ROM

View file

@ -0,0 +1 @@
../../../../resource/PRAVETS8C.ROM

View file

@ -0,0 +1 @@
../../../../resource/PRAVETS8M.ROM

View file

@ -0,0 +1 @@
../../../../resource/TK3000e.rom

View file

@ -165,7 +165,11 @@ std::string MAKEINTRESOURCE(int x)
case IDR_APPLE2_ROM: return "Apple2.rom";
case IDR_APPLE2_PLUS_ROM: return "Apple2_Plus.rom";
case IDR_APPLE2E_ROM: return "Apple2e.rom";
case IDR_APPLE2E_ENHANCED_ROM: return "Apple2e_Enhanced.rom";
case IDR_APPLE2E_ENHANCED_ROM: return "Apple2e_Enhanced.rom";
case IDR_PRAVETS_82_ROM: return "PRAVETS82.ROM";
case IDR_PRAVETS_8C_ROM: return "PRAVETS8C.ROM";
case IDR_PRAVETS_8M_ROM: return "PRAVETS8M.ROM";
case IDR_TK3000_2E_ROM: return "TK3000e.rom";
case IDR_DISK2_FW: return "DISK2.rom";
case IDR_SSC_FW: return "SSC.rom";