| 2453 | } |
| 2454 | |
| 2455 | void record_dma_event_data(uae_u32 evt, uae_u32 data) |
| 2456 | { |
| 2457 | struct dma_rec *dr; |
| 2458 | |
| 2459 | if (!dma_record_data) |
| 2460 | return; |
| 2461 | dr = &dma_record_data[dma_record_cycle]; |
| 2462 | dr->evt |= evt; |
| 2463 | dr->evtdata = data; |
| 2464 | dr->evtdataset = true; |
| 2465 | dr->ipl = regs.ipl_pin; |
| 2466 | } |
| 2467 | |
| 2468 | void record_dma_replace(int type, int extra) |
| 2469 | { |
no outgoing calls
no test coverage detected