Previous 199869 Revisions Next

r26242 Sunday 17th November, 2013 at 22:48:03 UTC by Jürgen Buchmüller
Silence DISK, KSEC and KWD logging. Enable DISPL logging.
[/branches/alto2/src/emu/cpu/alto2]alto2.c
[/branches/alto2/src/emu/machine]diablo_hd.c

branches/alto2/src/emu/machine/diablo_hd.c
r26241r26242
6363diablo_hd_device::diablo_hd_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
6464   device_t(mconfig, DIABLO_HD, "Diablo Disk", tag, owner, clock, "diablo_hd", __FILE__),
6565#if   DIABLO_DEBUG
66   m_log_level(9),
66   m_log_level(0),
6767#endif
6868   m_diablo31(true),
6969   m_unit(0),
r26241r26242
677677
678678   if (m_rdfirst >= 0) {
679679      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));
681681   }
682682   m_rdfirst = -1;
683683   m_rdlast = -1;
r26241r26242
11381138   int bit = 0;
11391139
11401140   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));
11421142      return 0;   // read gate is not asserted (active 0)
11431143   }
11441144
branches/alto2/src/emu/cpu/alto2/alto2.c
r26241r26242
8686alto2_cpu_device::alto2_cpu_device(const machine_config& mconfig, const char* tag, device_t* owner, UINT32 clock) :
8787   cpu_device(mconfig, ALTO2, "Xerox Alto-II", tag, owner, clock, "alto2", __FILE__),
8888#if   ALTO2_DEBUG
89   m_log_types(LOG_DISK|LOG_KSEC|LOG_KWD),
89   m_log_types(LOG_DISPL),
9090   m_log_level(8),
9191   m_log_newline(true),
9292#endif

Previous 199869 Revisions Next


© 1997-2024 The MAME Team