| 4558 | static int mmu_hit (uaecptr addr, int size, int rwi, uae_u32 *v); |
| 4559 | |
| 4560 | static uae_u32 REGPARAM2 mmu_lget (uaecptr addr) |
| 4561 | { |
| 4562 | int off = debug_mem_off (&addr); |
| 4563 | uae_u32 v = 0; |
| 4564 | if (!mmu_hit (addr, 4, 0, &v)) |
| 4565 | v = debug_mem_banks[off]->lget (addr); |
| 4566 | return v; |
| 4567 | } |
| 4568 | static uae_u32 REGPARAM2 mmu_wget (uaecptr addr) |
| 4569 | { |
| 4570 | int off = debug_mem_off (&addr); |
nothing calls this directly
no test coverage detected