File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ void cxd1185_device::map(address_map &map)
5959 map (0x3 , 0x3 ).rw (FUNC (cxd1185_device::int_req_r<1 >), FUNC (cxd1185_device::environ_w));
6060 map (0x4 , 0x4 ).rw (FUNC (cxd1185_device::scsi_ctrl_monitor_r), FUNC (cxd1185_device::timer_w));
6161 map (0x5 , 0x5 ).r (FUNC (cxd1185_device::fifo_status_r));
62- map (0x6 , 0x6 ).rw (FUNC (cxd1185_device::scsi_id_r ), FUNC (cxd1185_device::scsi_id_w ));
62+ map (0x6 , 0x6 ).rw (FUNC (cxd1185_device::scsi_idr_r ), FUNC (cxd1185_device::scsi_idr_w ));
6363 map (0x7 , 0x7 ).rw (FUNC (cxd1185_device::count_r<0 >), FUNC (cxd1185_device::count_w<0 >));
6464 map (0x8 , 0x8 ).rw (FUNC (cxd1185_device::count_r<1 >), FUNC (cxd1185_device::count_w<1 >));
6565 map (0x9 , 0x9 ).rw (FUNC (cxd1185_device::count_r<2 >), FUNC (cxd1185_device::count_w<2 >));
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class cxd1185_device
4141 template <unsigned Register> u8 int_req_r ();
4242 u8 scsi_ctrl_monitor_r ();
4343 u8 fifo_status_r ();
44- u8 scsi_id_r () { return m_scsi_id ; }
44+ u8 scsi_idr_r () { return m_scsi_idr ; }
4545 template <unsigned Byte> u8 count_r () { return u8 (m_count >> (Byte * 8 )); }
4646 template <unsigned Register> u8 int_auth_r () { return m_int_auth[Register]; }
4747 u8 mode_r () { return m_mode; }
@@ -53,7 +53,7 @@ class cxd1185_device
5353 void scsi_data_w (u8 data);
5454 void environ_w (u8 data);
5555 void timer_w (u8 data);
56- void scsi_id_w (u8 data) { m_scsi_id = data; }
56+ void scsi_idr_w (u8 data) { m_scsi_idr = data; }
5757 template <unsigned Byte> void count_w (u8 data) { m_count &= ~(0xffU << (Byte * 8 )); m_count |= u32 (data) << (Byte * 8 ); }
5858 template <unsigned Register> void int_auth_w (u8 data);
5959 void mode_w (u8 data) { m_mode = data; }
You can’t perform that action at this time.
0 commit comments