mirror of
https://github.com/holub/mame
synced 2025-05-28 16:43:04 +03:00
hphybrid: interrupt vector fetching fixed. One day I'll eventually get
it right..
This commit is contained in:
parent
9d99398208
commit
b1f5519497
@ -1459,7 +1459,7 @@ UINT32 hp_5061_3001_cpu_device::add_mae(aec_cases_t aec_case , UINT16 addr)
|
||||
bool top_half = BIT(addr , 15) != 0;
|
||||
|
||||
// Detect accesses to top half of base page
|
||||
if (aec_case == AEC_CASE_C && (addr & 0xfe00) == 0xfe00) {
|
||||
if ((aec_case == AEC_CASE_C || aec_case == AEC_CASE_I) && (addr & 0xfe00) == 0xfe00) {
|
||||
aec_case = AEC_CASE_B;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user