diff options
author | 2016-11-12 09:11:35 +0100 | |
---|---|---|
committer | 2016-11-12 09:12:35 +0100 | |
commit | e71e37e54f3df6bcd77aaaec5aac18db082b81a2 (patch) | |
tree | 900a332ce2e57f975bb749da834da28122dfa9fd /src/devices/sound/votrax.cpp | |
parent | 2131d9ad3a36ce2f8ddd536ac3267c79307a41d4 (diff) |
Revert "using of IS_ENABLED in files used in tiny build (nw)"
This reverts commit 1efccdd38d4bac6ec44e13f0a6cdf877e3a1c7cb.
Diffstat (limited to 'src/devices/sound/votrax.cpp')
-rw-r--r-- | src/devices/sound/votrax.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/devices/sound/votrax.cpp b/src/devices/sound/votrax.cpp index 2bbe34b4415..505ccd3d0a6 100644 --- a/src/devices/sound/votrax.cpp +++ b/src/devices/sound/votrax.cpp @@ -508,27 +508,27 @@ void votrax_sc01_device::sound_stream_update(sound_stream &stream, stream_sample uint8_t noise_out_digital = 0; for (int curclock = 0; curclock < half_clocks_per_sample; curclock++) { -if (IS_ENABLED(LOG_TIMING | LOG_LOWPARAM | LOG_GLOTTAL | LOG_TRANSITION)) +if (LOG_TIMING | LOG_LOWPARAM | LOG_GLOTTAL | LOG_TRANSITION) { if (m_counter_34 % 32 == 0 && m_master_clock == 0) { - if (IS_ENABLED(LOG_TIMING)) + if (LOG_TIMING) osd_printf_debug("MCLK C034 L070 L072 BET1 P1 P2 PHI1 PHI2 PH1' PH2' SUBC C088 C084 L092 IIRQ "); - if (IS_ENABLED(LOG_LOWPARAM)) + if (LOG_LOWPARAM) osd_printf_debug("F132 F114 F112 F142 L080 "); - if (IS_ENABLED(LOG_GLOTTAL)) + if (LOG_GLOTTAL) osd_printf_debug("C220 C222 C224 C234 C236 FGAT GLSY "); - if (IS_ENABLED(LOG_TRANSITION)) + if (LOG_TRANSITION) osd_printf_debug("0625 C046 L046 A0-2 L168 L170 FC VA FA F1 F2 F3 F2Q "); osd_printf_debug("\n"); } - if (IS_ENABLED(LOG_TIMING)) + if (LOG_TIMING) osd_printf_debug("%4X %4X %4X %4X %4X %4X %4X %4X %4X %4X %4X %4X %4X %4X %4X %4X ", m_master_clock, m_counter_34, m_latch_70, m_latch_72, m_beta1, m_p1, m_p2, m_phi1, m_phi2, m_phi1_20, m_phi2_20, m_subphoneme_count, m_clock_88, m_counter_84, m_latch_92, m_internal_request); - if (IS_ENABLED(LOG_LOWPARAM)) + if (LOG_LOWPARAM) osd_printf_debug("%d %d %d %d %d ", m_srff_132, m_srff_114, m_srff_112, m_srff_142, m_latch_80); - if (IS_ENABLED(LOG_GLOTTAL)) + if (LOG_GLOTTAL) osd_printf_debug("%4X %4X %4X %4X %4X %4X %4X ", m_counter_220, m_counter_222, m_counter_224, m_counter_234, m_counter_236, m_fgate, m_glottal_sync); - if (IS_ENABLED(LOG_TRANSITION)) + if (LOG_TRANSITION) osd_printf_debug("%4X %4X %4X %4X %4X %4X %4X %4X %4X %4X %4X %4X %4X ", m_0625_clock, m_counter_46, m_latch_46, m_latch_72 & 7, m_latch_168, m_latch_170, m_fc, m_va, m_fa, m_f1, m_f2, m_f3, m_f2q); osd_printf_debug("\n"); } @@ -771,7 +771,7 @@ osd_printf_debug("[PH=%02X]\n", m_latch_80); } // counter 222 is always enabled - if (IS_ENABLED(1)) + if (1) { // if counter 220's TC is 1, do a load instead of a count if (counter_220_tc) @@ -781,7 +781,7 @@ osd_printf_debug("[PH=%02X]\n", m_latch_80); } // counter 236 is always enabled - if (IS_ENABLED(1)) + if (1) { m_counter_236 = (m_counter_236 + 1) & 0xf; |