summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/53c810.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/53c810.h')
-rw-r--r--src/emu/machine/53c810.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/machine/53c810.h b/src/emu/machine/53c810.h
index 3230c9913a4..1d3b80772b3 100644
--- a/src/emu/machine/53c810.h
+++ b/src/emu/machine/53c810.h
@@ -7,11 +7,11 @@ struct LSI53C810interface
{
const SCSIConfigTable *scsidevs; /* SCSI devices */
void (*irq_callback)(running_machine *machine, int); /* IRQ callback */
- void (*dma_callback)(UINT32, UINT32, int, int); /* DMA callback */
- UINT32 (*fetch)(UINT32 dsp);
+ void (*dma_callback)(running_machine *machine, UINT32, UINT32, int, int); /* DMA callback */
+ UINT32 (*fetch)(running_machine *machine, UINT32 dsp);
};
-extern void lsi53c810_init(const struct LSI53C810interface *interface);
+extern void lsi53c810_init(running_machine *machine, const struct LSI53C810interface *interface);
extern void lsi53c810_exit(const struct LSI53C810interface *interface);
extern void lsi53c810_read_data(int bytes, UINT8 *pData);
@@ -22,6 +22,6 @@ extern void *lsi53c810_get_device(int id);
READ8_HANDLER( lsi53c810_reg_r );
WRITE8_HANDLER( lsi53c810_reg_w );
-unsigned lsi53c810_dasm(char *buf, UINT32 pc);
+unsigned lsi53c810_dasm(running_machine *machine, char *buf, UINT32 pc);
#endif