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

Function pq

src/ide.cpp:290–299  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

288}
289
290static void pq(struct ide_hdf *ide, int offset, uae_u64 q)
291{
292 if (ide->byteswap) {
293 pl(ide, offset + 0, q >> 32);
294 pl(ide, offset + 2, q >> 0);
295 } else {
296 pl(ide, offset + 0, q >> 0);
297 pl(ide, offset + 2, q >> 32);
298 }
299}
300
301static void pw (struct ide_hdf *ide, int offset, uae_u16 w)
302{

Callers 1

ide_identity_bufferFunction · 0.85

Calls 1

plFunction · 0.70

Tested by

no test coverage detected