Skip to content

Commit

Permalink
md: revert sdram access delays
Browse files Browse the repository at this point in the history
Causes freezes in Doom 32XR, we need a better model for burst accesses, etc
  • Loading branch information
LukeUsher committed Mar 25, 2024
1 parent 9ae2e43 commit d5d3d16
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ares/md/m32x/bus-internal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ auto M32X::writeInternal(n1 upper, n1 lower, n32 address, n16 data) -> void {
}

if(address >= 0x0600'0000 && address <= 0x0603'ffff) {
if(shm.active()) shm.step(1); if(shs.active()) shs.step(1);
if(upper) sdram[address >> 1 & 0x1ffff].byte(1) = data.byte(1);
if(lower) sdram[address >> 1 & 0x1ffff].byte(0) = data.byte(0);
return;
Expand Down

0 comments on commit d5d3d16

Please sign in to comment.