mirror of
https://github.com/FranLMSP/snes.git
synced 2026-08-03 08:30:01 -04:00
direct_page_indexed_indirect wrapping add failsafe
This commit is contained in:
@@ -83,7 +83,7 @@ pub fn direct_page_indexed(bus: &Bus, pc_addr: u32, direct_page_register: u16, x
|
||||
/// OPCODE (dp,X)
|
||||
/// OPCODE (dp,Y)
|
||||
pub fn direct_page_indexed_indirect(bus: &Bus, pc_addr: u32, direct_page_register: u16, xy: u16) -> u32 {
|
||||
direct_page_indirect(bus, pc_addr, direct_page_register + xy)
|
||||
direct_page_indirect(bus, pc_addr, direct_page_register.wrapping_add(xy))
|
||||
}
|
||||
|
||||
/// OPCODE (dp),X
|
||||
|
||||
Reference in New Issue
Block a user