DMA now causes page dirty mask to be updated.

This commit is contained in:
TomW 2015-02-09 18:26:59 +00:00
commit d6c177a3c0
4 changed files with 21 additions and 0 deletions

View file

@ -246,6 +246,7 @@ uint8_t _dma_read(uint32_t addr)
void _dma_write(uint32_t addr, uint8_t val)
{
mem_writeb_phys(addr, val);
mem_invalidate_range(addr, addr);
}
int dma_channel_read(int channel)