mirror of
https://github.com/dingusdev/dingusppc.git
synced 2026-04-23 21:17:03 +00:00
Implement writes to SCSI Pseudo-DMA register.
This commit is contained in:
@@ -223,7 +223,10 @@ void AMIC::write(uint32_t rgn_start, uint32_t offset, uint32_t value, int size)
|
||||
this->mace->write((offset >> 4) & 0x1F, value);
|
||||
return;
|
||||
case 0x10:
|
||||
this->scsi->write((offset >> 4) & 0xF, value);
|
||||
if (offset & 0x100)
|
||||
this->scsi->pseudo_dma_write(value);
|
||||
else
|
||||
this->scsi->write((offset >> 4) & 0xF, value);
|
||||
return;
|
||||
case 0x14: // Sound registers
|
||||
switch(offset) {
|
||||
|
||||
Reference in New Issue
Block a user