summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/iopdma.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/iopdma.cpp')
-rw-r--r--src/devices/machine/iopdma.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/devices/machine/iopdma.cpp b/src/devices/machine/iopdma.cpp
index 883a03eafd0..97b170a0a1a 100644
--- a/src/devices/machine/iopdma.cpp
+++ b/src/devices/machine/iopdma.cpp
@@ -11,8 +11,10 @@
#include "emu.h"
#include "iopdma.h"
+
#include "cpu/mips/ps2vu.h"
+
DEFINE_DEVICE_TYPE(SONYIOP_DMA, iop_dma_device, "iopdma", "PlayStation 2 IOP DMAC")
iop_dma_device::iop_dma_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
@@ -27,6 +29,10 @@ iop_dma_device::iop_dma_device(const machine_config &mconfig, const char *tag, d
{
}
+iop_dma_device::~iop_dma_device()
+{
+}
+
void iop_dma_device::device_start()
{
set_icountptr(m_icount);
@@ -237,7 +243,7 @@ void iop_dma_device::transfer_spu(uint32_t chan)
//if (first_bank)
//m_intc->raise_interrupt(iop_intc_device::INT_SPU);
- transfer_finish(chan);
+ transfer_finish(chan);
}
}