summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/bebox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/bebox.cpp')
-rw-r--r--src/mame/machine/bebox.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/mame/machine/bebox.cpp b/src/mame/machine/bebox.cpp
index 49856bdbb9c..4838fe68107 100644
--- a/src/mame/machine/bebox.cpp
+++ b/src/mame/machine/bebox.cpp
@@ -623,28 +623,28 @@ READ64_MEMBER(bebox_state::scsi53c810_r )
int reg = offset*8;
uint64_t r = 0;
if (!ACCESSING_BITS_56_63) {
- r |= (uint64_t)m_lsi53c810->lsi53c810_reg_r(reg+0) << 56;
+ r |= (uint64_t)m_lsi53c810->reg_r(reg+0) << 56;
}
if (!ACCESSING_BITS_48_55) {
- r |= (uint64_t)m_lsi53c810->lsi53c810_reg_r(reg+1) << 48;
+ r |= (uint64_t)m_lsi53c810->reg_r(reg+1) << 48;
}
if (!ACCESSING_BITS_40_47) {
- r |= (uint64_t)m_lsi53c810->lsi53c810_reg_r(reg+2) << 40;
+ r |= (uint64_t)m_lsi53c810->reg_r(reg+2) << 40;
}
if (!ACCESSING_BITS_32_39) {
- r |= (uint64_t)m_lsi53c810->lsi53c810_reg_r(reg+3) << 32;
+ r |= (uint64_t)m_lsi53c810->reg_r(reg+3) << 32;
}
if (!ACCESSING_BITS_24_31) {
- r |= (uint64_t)m_lsi53c810->lsi53c810_reg_r(reg+4) << 24;
+ r |= (uint64_t)m_lsi53c810->reg_r(reg+4) << 24;
}
if (!ACCESSING_BITS_16_23) {
- r |= (uint64_t)m_lsi53c810->lsi53c810_reg_r(reg+5) << 16;
+ r |= (uint64_t)m_lsi53c810->reg_r(reg+5) << 16;
}
if (!ACCESSING_BITS_8_15) {
- r |= (uint64_t)m_lsi53c810->lsi53c810_reg_r(reg+6) << 8;
+ r |= (uint64_t)m_lsi53c810->reg_r(reg+6) << 8;
}
if (!ACCESSING_BITS_0_7) {
- r |= (uint64_t)m_lsi53c810->lsi53c810_reg_r(reg+7) << 0;
+ r |= (uint64_t)m_lsi53c810->reg_r(reg+7) << 0;
}
return r;
@@ -655,28 +655,28 @@ WRITE64_MEMBER(bebox_state::scsi53c810_w )
{
int reg = offset*8;
if (!ACCESSING_BITS_56_63) {
- m_lsi53c810->lsi53c810_reg_w(reg+0, data >> 56);
+ m_lsi53c810->reg_w(reg+0, data >> 56);
}
if (!ACCESSING_BITS_48_55) {
- m_lsi53c810->lsi53c810_reg_w(reg+1, data >> 48);
+ m_lsi53c810->reg_w(reg+1, data >> 48);
}
if (!ACCESSING_BITS_40_47) {
- m_lsi53c810->lsi53c810_reg_w(reg+2, data >> 40);
+ m_lsi53c810->reg_w(reg+2, data >> 40);
}
if (!ACCESSING_BITS_32_39) {
- m_lsi53c810->lsi53c810_reg_w(reg+3, data >> 32);
+ m_lsi53c810->reg_w(reg+3, data >> 32);
}
if (!ACCESSING_BITS_24_31) {
- m_lsi53c810->lsi53c810_reg_w(reg+4, data >> 24);
+ m_lsi53c810->reg_w(reg+4, data >> 24);
}
if (!ACCESSING_BITS_16_23) {
- m_lsi53c810->lsi53c810_reg_w(reg+5, data >> 16);
+ m_lsi53c810->reg_w(reg+5, data >> 16);
}
if (!ACCESSING_BITS_8_15) {
- m_lsi53c810->lsi53c810_reg_w(reg+6, data >> 8);
+ m_lsi53c810->reg_w(reg+6, data >> 8);
}
if (!ACCESSING_BITS_0_7) {
- m_lsi53c810->lsi53c810_reg_w(reg+7, data >> 0);
+ m_lsi53c810->reg_w(reg+7, data >> 0);
}
}