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

Function record_rom_access

src/debug.cpp:2573–2583  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2571}
2572
2573void record_rom_access(uaecptr ptr, uae_u32 v, int size, bool rw)
2574{
2575 dma_record_init();
2576 if (!dma_record_data)
2577 return;
2578 struct dma_rec *dr = &dma_record_data[dma_record_cycle];
2579 dr->miscaddr = ptr;
2580 dr->miscval = v;
2581 dr->ciarw = rw;
2582 dr->miscsize = size;
2583}
2584
2585void record_cia_access(int r, int mask, uae_u16 value, bool rw, int phase)
2586{

Callers 6

kickmem_lgetFunction · 0.85
kickmem_wgetFunction · 0.85
kickmem_bgetFunction · 0.85
kickmem_lputFunction · 0.85
kickmem_wputFunction · 0.85
kickmem_bputFunction · 0.85

Calls 1

dma_record_initFunction · 0.85

Tested by

no test coverage detected