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

Function wswp

src/debugmem.cpp:2409–2412  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2407#define SHF_EXECINSTR (1 << 2)
2408
2409static void wswp(uae_u16 *v)
2410{
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);

Callers 2

swap_symbolFunction · 0.85
loadelffileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected