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

Function get_long_debug

src/cputest.cpp:823–827  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

821 return (p[0] << 8) | (p[1]);
822}
823uae_u32 get_long_debug(uaecptr addr)
824{
825 uae_u8 *p = get_addr(addr, 4, -1);
826 return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | (p[3]);
827}
828uae_u32 get_iword_debug(uaecptr addr)
829{
830 return get_word_debug(addr);

Callers 1

get_ilong_debugFunction · 0.70

Calls 1

get_addrFunction · 0.70

Tested by

no test coverage detected