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

Function lswp

src/debugmem.cpp:2413–2416  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2411 *v = (*v >> 8) | (*v << 8);
2412}
2413static void lswp(uae_u32 *v)
2414{
2415 *v = (*v >> 24) | ((*v >> 8) & 0x0000ff00) | ((*v << 8) & 0x00ff0000) | (*v << 24);
2416}
2417static void lwswp(uae_u16 *vp)
2418{
2419 uae_u32 v = (vp[1] << 16) | vp[0];

Callers 4

swap_headerFunction · 0.85
swap_symbolFunction · 0.85
swap_relFunction · 0.85
loadelffileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected