| 460 | } |
| 461 | } |
| 462 | uae_u32 get_ilong_debug (uaecptr addr) |
| 463 | { |
| 464 | if (debug_mmu_mode) { |
| 465 | return get_long_debug (addr); |
| 466 | } else { |
| 467 | if (valid_address (addr, 4)) |
| 468 | return get_long (addr); |
| 469 | return 0xffffffff; |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | static uae_u8 *get_real_address_debug(uaecptr addr) |
| 474 | { |
no test coverage detected