Skip to content

Commit

Permalink
Restore behaviour for access to open space: the high byte of the addr…
Browse files Browse the repository at this point in the history
…ess is read.

git-svn-id: https://svn.code.sf.net/p/vice-emu/code/trunk@45464 379a1393-f5fb-40a0-bcee-ef074d9b53f7
  • Loading branch information
Rhialto committed Jan 23, 2025
1 parent 9f84ce3 commit f742311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vice/src/pet/petmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ static void rom6809_store(uint16_t addr, uint8_t value)

uint8_t read_unused(uint16_t addr)
{
return last_access;
return addr >> 8;
}

static uint8_t read_io_88_8f(uint16_t addr)
Expand Down

0 comments on commit f742311

Please sign in to comment.