MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / REGPARAM2

Function REGPARAM2

src/debug.cpp:4560–4567  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4558static int mmu_hit (uaecptr addr, int size, int rwi, uae_u32 *v);
4559
4560static 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}
4568static uae_u32 REGPARAM2 mmu_wget (uaecptr addr)
4569{
4570 int off = debug_mem_off (&addr);

Callers

nothing calls this directly

Calls 2

debug_mem_offFunction · 0.85
mmu_hitFunction · 0.85

Tested by

no test coverage detected