diff options
| author | 2016-05-25 08:19:21 +0200 | |
|---|---|---|
| committer | 2016-05-25 08:19:21 +0200 | |
| commit | 68785dccfee3208163c8169abc5c6d01becf36d4 (patch) | |
| tree | d6967331fd0e938981777aa32b5f246e04fb701b /src/devices/cpu/h8/h8_timer16.cpp | |
| parent | c1230f8b9bf4373d396ecb970c966ec2ce6dfc15 (diff) | |
Cleanups and version bumpmame0174
Diffstat (limited to 'src/devices/cpu/h8/h8_timer16.cpp')
| -rw-r--r-- | src/devices/cpu/h8/h8_timer16.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/cpu/h8/h8_timer16.cpp b/src/devices/cpu/h8/h8_timer16.cpp index 4c7bec631a5..796a26c0fef 100644 --- a/src/devices/cpu/h8/h8_timer16.cpp +++ b/src/devices/cpu/h8/h8_timer16.cpp @@ -103,13 +103,13 @@ WRITE8_MEMBER(h8_timer16_channel_device::tier_w) tier = data; tier_update(); if(V>=1) logerror("irq %c%c%c%c%c%c trigger=%d\n", - ier & IRQ_A ? 'a' : '.', - ier & IRQ_B ? 'b' : '.', - ier & IRQ_C ? 'c' : '.', - ier & IRQ_D ? 'd' : '.', - ier & IRQ_V ? 'v' : '.', - ier & IRQ_U ? 'u' : '.', - ier & IRQ_TRIG ? 1 : 0); + ier & IRQ_A ? 'a' : '.', + ier & IRQ_B ? 'b' : '.', + ier & IRQ_C ? 'c' : '.', + ier & IRQ_D ? 'd' : '.', + ier & IRQ_V ? 'v' : '.', + ier & IRQ_U ? 'u' : '.', + ier & IRQ_TRIG ? 1 : 0); recalc_event(); } |
