mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-08-14 14:25:19 +00:00
Annunciator is noop for the moment
This commit is contained in:
@@ -366,7 +366,12 @@ void c_initialize_tables() {
|
|||||||
cpu65_vmem_r[0xC07F] =
|
cpu65_vmem_r[0xC07F] =
|
||||||
iie_check_dhires;
|
iie_check_dhires;
|
||||||
|
|
||||||
/* DHIRES/Annunciator switches */
|
/* Annunciator */
|
||||||
|
for (i = 0xC058; i <= 0xC05D; i++) {
|
||||||
|
cpu65_vmem_w[i] = cpu65_vmem_r[i] = iie_annunciator_noop;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* DHIRES */
|
||||||
cpu65_vmem_w[0xC05E] =
|
cpu65_vmem_w[0xC05E] =
|
||||||
cpu65_vmem_r[0xC05E] =
|
cpu65_vmem_r[0xC05E] =
|
||||||
iie_dhires_on;
|
iie_dhires_on;
|
||||||
|
@@ -204,6 +204,7 @@ iie_cxrom_peripheral(),
|
|||||||
iie_cxrom_internal(),
|
iie_cxrom_internal(),
|
||||||
iie_ioudis_on(),
|
iie_ioudis_on(),
|
||||||
iie_ioudis_off(),
|
iie_ioudis_off(),
|
||||||
|
iie_annunciator_noop(),
|
||||||
iie_dhires_on(),
|
iie_dhires_on(),
|
||||||
iie_dhires_off(),
|
iie_dhires_off(),
|
||||||
iie_hires_off(),
|
iie_hires_off(),
|
||||||
|
5
src/vm.c
5
src/vm.c
@@ -265,6 +265,11 @@ GLUE_C_READ(iie_check_mixed)
|
|||||||
return (softswitches & SS_MIXED) ? 0x80 : 0x00;
|
return (softswitches & SS_MIXED) ? 0x80 : 0x00;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GLUE_C_READ(iie_annunciator_noop)
|
||||||
|
{
|
||||||
|
return 0x0;// TBD : mem_floating_bus()
|
||||||
|
}
|
||||||
|
|
||||||
GLUE_C_READ(iie_hires_off)
|
GLUE_C_READ(iie_hires_off)
|
||||||
{
|
{
|
||||||
if (!(softswitches & SS_HIRES)) {
|
if (!(softswitches & SS_HIRES)) {
|
||||||
|
Reference in New Issue
Block a user