amic: Add modem port transmit DMA read.

This commit is contained in:
joevt 2024-03-08 00:51:06 -08:00 committed by dingusdev
parent ffc7de4715
commit 6154b7cbe2

View File

@ -207,6 +207,8 @@ uint32_t AMIC::read(uint32_t rgn_start, uint32_t offset, int size)
return (this->floppy_addr_ptr >> (3 - (offset & 3)) * 8) & 0xFF;
case AMICReg::Floppy_DMA_Ctrl:
return this->floppy_dma->read_stat();
case SCC_DMA_Xmt_A_Ctrl:
return this->escc_xmit_a_dma->read_stat();
case SCC_DMA_Xmt_B_Ctrl:
return this->escc_xmit_b_dma->read_stat();
default: