branches/alto2/src/emu/machine/diablo_hd.c
| r26241 | r26242 | |
| 63 | 63 | diablo_hd_device::diablo_hd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : |
| 64 | 64 | device_t(mconfig, DIABLO_HD, "Diablo Disk", tag, owner, clock, "diablo_hd", __FILE__), |
| 65 | 65 | #if DIABLO_DEBUG |
| 66 | | m_log_level(9), |
| 66 | m_log_level(0), |
| 67 | 67 | #endif |
| 68 | 68 | m_diablo31(true), |
| 69 | 69 | m_unit(0), |
| r26241 | r26242 | |
| 677 | 677 | |
| 678 | 678 | if (m_rdfirst >= 0) { |
| 679 | 679 | LOG_DRIVE((0, "[DHD%u] RD CHS:%03d/%d/%02d bit#%-5d ... bit#%-5d\n", |
| 680 | | m_cylinder, m_head, m_sector, m_rdfirst, m_rdlast)); |
| 680 | m_unit, m_cylinder, m_head, m_sector, m_rdfirst, m_rdlast)); |
| 681 | 681 | } |
| 682 | 682 | m_rdfirst = -1; |
| 683 | 683 | m_rdlast = -1; |
| r26241 | r26242 | |
| 1138 | 1138 | int bit = 0; |
| 1139 | 1139 | |
| 1140 | 1140 | if (m_rdgate_0) { |
| 1141 | | LOG_DRIVE((0,"[DHD%u] rdgate not asserted\n", m_unit)); |
| 1141 | LOG_DRIVE((1,"[DHD%u] rdgate not asserted\n", m_unit)); |
| 1142 | 1142 | return 0; // read gate is not asserted (active 0) |
| 1143 | 1143 | } |
| 1144 | 1144 | |
branches/alto2/src/emu/cpu/alto2/alto2.c
| r26241 | r26242 | |
| 86 | 86 | alto2_cpu_device::alto2_cpu_device(const machine_config& mconfig, const char* tag, device_t* owner, UINT32 clock) : |
| 87 | 87 | cpu_device(mconfig, ALTO2, "Xerox Alto-II", tag, owner, clock, "alto2", __FILE__), |
| 88 | 88 | #if ALTO2_DEBUG |
| 89 | | m_log_types(LOG_DISK|LOG_KSEC|LOG_KWD), |
| 89 | m_log_types(LOG_DISPL), |
| 90 | 90 | m_log_level(8), |
| 91 | 91 | m_log_newline(true), |
| 92 | 92 | #endif |