dma transfer not passing

This commit is contained in:
2025-05-30 06:41:09 -06:00
parent 1f55455a65
commit 1455bc5666

View File

@ -21,7 +21,7 @@ void dma_tick() {
return; return;
} }
ppu_oam_write(ctx.byte, bus_read((ctx.value * 0x100) + ctx.byte)); ppu_oam_write(ctx.byte, bus_read(((ctx.value << 8)) + ctx.byte));
ctx.byte++; ctx.byte++;