summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/egret.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/egret.cpp')
-rw-r--r--src/mame/machine/egret.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/machine/egret.cpp b/src/mame/machine/egret.cpp
index dacd0a3ec4e..961a37e3b3a 100644
--- a/src/mame/machine/egret.cpp
+++ b/src/mame/machine/egret.cpp
@@ -113,14 +113,14 @@ void egret_device::send_port(uint8_t offset, uint8_t data)
{
m_adb_dtime = (int)(machine().time().as_ticks(1000000) - last_adb_time);
/*
- if (data & 0x80)
- {
- printf("EG ADB: 1->0 time %d\n", m_adb_dtime);
- }
- else
- {
- printf("EG ADB: 0->1 time %d\n", m_adb_dtime);
- }
+ if (data & 0x80)
+ {
+ printf("EG ADB: 1->0 time %d\n", m_adb_dtime);
+ }
+ else
+ {
+ printf("EG ADB: 0->1 time %d\n", m_adb_dtime);
+ }
*/
// allow the linechange handler to override us
adb_in = (data & 0x80) ? true : false;