summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/53c810.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/53c810.cpp')
-rw-r--r--src/devices/machine/53c810.cpp52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/devices/machine/53c810.cpp b/src/devices/machine/53c810.cpp
index 2d6b7049016..1ea3bd8e1cc 100644
--- a/src/devices/machine/53c810.cpp
+++ b/src/devices/machine/53c810.cpp
@@ -9,9 +9,9 @@
#define DMA_MAX_ICOUNT 512 /* Maximum number of DMA Scripts opcodes to run */
#define DASM_OPCODES 0
-UINT32 lsi53c810_device::FETCH()
+uint32_t lsi53c810_device::FETCH()
{
- UINT32 r = m_fetch_cb(dsp);
+ uint32_t r = m_fetch_cb(dsp);
dsp += 4;
return r;
}
@@ -23,8 +23,8 @@ void lsi53c810_device::dmaop_invalid()
void lsi53c810_device::dmaop_move_memory()
{
- UINT32 src = FETCH();
- UINT32 dst = FETCH();
+ uint32_t src = FETCH();
+ uint32_t dst = FETCH();
int count;
count = dcmd & 0xffffff;
@@ -51,9 +51,9 @@ void lsi53c810_device::dmaop_interrupt()
void lsi53c810_device::dmaop_block_move()
{
- UINT32 address;
- UINT32 count;
- INT32 dsps;
+ uint32_t address;
+ uint32_t count;
+ int32_t dsps;
address = FETCH();
count = dcmd & 0x00ffffff;
@@ -65,7 +65,7 @@ void lsi53c810_device::dmaop_block_move()
// table indirect
if (dcmd & 0x10000000)
{
- dsps = (INT32)address&0xffffff;
+ dsps = (int32_t)address&0xffffff;
// sign extend
if (dsps & 0x00800000)
{
@@ -95,7 +95,7 @@ void lsi53c810_device::dmaop_block_move()
void lsi53c810_device::dmaop_select()
{
-// UINT32 operand;
+// uint32_t operand;
// operand = FETCH();
@@ -122,7 +122,7 @@ void lsi53c810_device::dmaop_select()
void lsi53c810_device::dmaop_wait_disconnect()
{
-// UINT32 operand;
+// uint32_t operand;
// operand = FETCH();
@@ -140,7 +140,7 @@ void lsi53c810_device::dmaop_wait_disconnect()
void lsi53c810_device::dmaop_wait_reselect()
{
- // UINT32 operand;
+ // uint32_t operand;
// operand = FETCH();
@@ -158,7 +158,7 @@ void lsi53c810_device::dmaop_wait_reselect()
void lsi53c810_device::dmaop_set()
{
-// UINT32 operand;
+// uint32_t operand;
// operand = FETCH();
@@ -187,7 +187,7 @@ void lsi53c810_device::dmaop_set()
void lsi53c810_device::dmaop_clear()
{
-// UINT32 operand;
+// uint32_t operand;
// operand = FETCH();
@@ -289,10 +289,10 @@ int lsi53c810_device::scripts_compute_branch()
return passed;
}
-UINT32 lsi53c810_device::scripts_get_jump_dest()
+uint32_t lsi53c810_device::scripts_get_jump_dest()
{
- INT32 dsps;
- UINT32 dest;
+ int32_t dsps;
+ uint32_t dest;
dsps = FETCH();
@@ -309,7 +309,7 @@ UINT32 lsi53c810_device::scripts_get_jump_dest()
dsps += dsp;
}
- dest = (UINT32)dsps;
+ dest = (uint32_t)dsps;
logerror("cur DSP %x, dest %x\n", dsp, dest);
@@ -394,7 +394,7 @@ void lsi53c810_device::dma_exec()
}
}
-UINT8 lsi53c810_device::lsi53c810_reg_r( int offset )
+uint8_t lsi53c810_device::lsi53c810_reg_r( int offset )
{
// logerror("53c810: read reg %d:0x%x (PC=%x)\n", offset, offset, space.device().safe_pc());
switch(offset)
@@ -477,7 +477,7 @@ UINT8 lsi53c810_device::lsi53c810_reg_r( int offset )
//return 0;
}
-void lsi53c810_device::lsi53c810_reg_w(int offset, UINT8 data)
+void lsi53c810_device::lsi53c810_reg_w(int offset, uint8_t data)
{
// logerror("53c810: %02x to reg %d:0x%x (PC=%x)\n", data, offset, offset, space.device().safe_pc());
switch(offset)
@@ -610,7 +610,7 @@ void lsi53c810_device::lsi53c810_reg_w(int offset, UINT8 data)
}
}
-void lsi53c810_device::add_opcode(UINT8 op, UINT8 mask, opcode_handler_delegate handler)
+void lsi53c810_device::add_opcode(uint8_t op, uint8_t mask, opcode_handler_delegate handler)
{
for (int i = 0; i < 256; i++)
{
@@ -621,7 +621,7 @@ void lsi53c810_device::add_opcode(UINT8 op, UINT8 mask, opcode_handler_delegate
}
}
-lsi53c810_device::lsi53c810_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+lsi53c810_device::lsi53c810_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: legacy_scsi_host_adapter(mconfig, LSI53C810, "53C810 SCSI", tag, owner, clock, "lsi53c810", __FILE__)
{
}
@@ -663,17 +663,17 @@ void lsi53c810_device::device_start()
*
*************************************/
-UINT32 lsi53c810_device::lsi53c810_dasm_fetch(UINT32 pc)
+uint32_t lsi53c810_device::lsi53c810_dasm_fetch(uint32_t pc)
{
return m_fetch_cb(pc);
}
-unsigned lsi53c810_device::lsi53c810_dasm(char *buf, UINT32 pc)
+unsigned lsi53c810_device::lsi53c810_dasm(char *buf, uint32_t pc)
{
unsigned result = 0;
const char *op_mnemonic = nullptr;
- UINT32 op = lsi53c810_dasm_fetch(pc);
- UINT32 dest;
+ uint32_t op = lsi53c810_dasm_fetch(pc);
+ uint32_t dest;
int i;
static const char *const phases[] =
@@ -699,7 +699,7 @@ unsigned lsi53c810_device::lsi53c810_dasm(char *buf, UINT32 pc)
{
static const struct
{
- UINT32 flag;
+ uint32_t flag;
const char *text;
} flags[] =
{