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

Function pl

src/ide.cpp:279–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

277}
278
279static void pl(struct ide_hdf *ide, int offset, uae_u32 l)
280{
281 if (ide->byteswap) {
282 l = ((l >> 24) & 0x000000ff) | ((l >> 8) & 0x0000ff00) | ((l << 8) & 0x00ff0000) | ((l << 24) & 0xff000000);
283 }
284 ide->secbuf[offset * 2 + 0] = l;
285 ide->secbuf[offset * 2 + 1] = l >> 8;
286 ide->secbuf[offset * 2 + 2] = l >> 16;
287 ide->secbuf[offset * 2 + 3] = l >> 24;
288}
289
290static void pq(struct ide_hdf *ide, int offset, uae_u64 q)
291{

Callers 2

pqFunction · 0.70
ide_identity_bufferFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected