Add support for Base64A.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
parent
40d3e822e9
commit
22125c9566
7 changed files with 13 additions and 1 deletions
|
@ -120,7 +120,7 @@ namespace
|
|||
|
||||
const std::vector<eApple2Type> computerTypes = {A2TYPE_APPLE2, A2TYPE_APPLE2PLUS, A2TYPE_APPLE2JPLUS, A2TYPE_APPLE2E,
|
||||
A2TYPE_APPLE2EENHANCED, A2TYPE_PRAVETS82, A2TYPE_PRAVETS8M, A2TYPE_PRAVETS8A,
|
||||
A2TYPE_TK30002E};
|
||||
A2TYPE_BASE64A, A2TYPE_TK30002E};
|
||||
const std::vector<SS_CARDTYPE> cardsInSlot4 = {CT_Empty, CT_MouseInterface, CT_MockingboardC, CT_Phasor};
|
||||
const std::vector<SS_CARDTYPE> cardsInSlot5 = {CT_Empty, CT_Z80, CT_MockingboardC, CT_SAM};
|
||||
|
||||
|
|
|
@ -220,6 +220,11 @@
|
|||
<string>Pravets 8A</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Base64A</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>TK3000 //e</string>
|
||||
|
|
|
@ -20,5 +20,7 @@
|
|||
<file>resources/PRAVETS82.ROM</file>
|
||||
<file>resources/TK3000e.rom</file>
|
||||
<file>resources/Apple2_JPlus_Video.rom</file>
|
||||
<file>resources/Base64A.rom</file>
|
||||
<file>resources/Base64A_German_Video.rom</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
|
1
source/frontends/qapple/resources/Base64A.rom
Symbolic link
1
source/frontends/qapple/resources/Base64A.rom
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../../resource/Base64A.rom
|
1
source/frontends/qapple/resources/Base64A_German_Video.rom
Symbolic link
1
source/frontends/qapple/resources/Base64A_German_Video.rom
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../../../resource/Base64A_German_Video.rom
|
|
@ -21,6 +21,7 @@ void SetWindowTitle()
|
|||
case A2TYPE_PRAVETS8M: g_pAppTitle = TITLE_PRAVETS_8M; break;
|
||||
case A2TYPE_PRAVETS8A: g_pAppTitle = TITLE_PRAVETS_8A; break;
|
||||
case A2TYPE_TK30002E: g_pAppTitle = TITLE_TK3000_2E; break;
|
||||
case A2TYPE_BASE64A: g_pAppTitle = TITLE_BASE64A; break;
|
||||
}
|
||||
|
||||
g_pAppTitle += " - ";
|
||||
|
|
|
@ -15,6 +15,7 @@ const char * MAKEINTRESOURCE(int x)
|
|||
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_BASE_64A_ROM: return "Base64A.rom";
|
||||
|
||||
case IDR_APPLE2_JPLUS_VIDEO_ROM: return "Apple2_JPlus_Video.rom";
|
||||
case IDR_DISK2_16SECTOR_FW: return "DISK2.rom";
|
||||
|
@ -26,6 +27,7 @@ const char * MAKEINTRESOURCE(int x)
|
|||
case IDR_MOUSEINTERFACE_FW: return "MouseInterface.rom";
|
||||
case IDR_THUNDERCLOCKPLUS_FW: return "ThunderClockPlus.rom";
|
||||
case IDR_TKCLOCK_FW: return "TKClock.rom";
|
||||
case IDR_BASE64A_VIDEO_ROM: return "Base64A_German_Video.rom";
|
||||
}
|
||||
|
||||
LogFileOutput("Unknown resource %d\n", x);
|
||||
|
|
Loading…
Add table
Reference in a new issue