| 288 | } |
| 289 | |
| 290 | static 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 | |
| 301 | static void pw (struct ide_hdf *ide, int offset, uae_u16 w) |
| 302 | { |
no test coverage detected