Previous 199869 Revisions Next

r40537 Friday 28th August, 2015 at 17:38:35 UTC by Scott Stone
Comment LOG lines which are causing "error: unknown conversion type character 'l' in format [-Werror=format=]" and stopping successful compile  (nw)
[src/mess/drivers]force68k.c

trunk/src/mess/drivers/force68k.c
r249048r249049
1// license:BSD-3-Clause
1// license:BSD-3-Clause
22// copyright-holders:Joakim Larsson Edstr??m
33/***************************************************************************
44 *
r249048r249049
252252 */
253253WRITE_LINE_MEMBER (force68k_state::centronics_ack_w)
254254{
255        LOG (logerror ("centronics_ack_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
255//      LOG (logerror ("centronics_ack_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
256256        m_centronics_ack = state;
257257        m_pit->h1_set (state);
258258}
r249048r249049
261261 * The centronics busy signal is not used by the ROM driver afaik
262262 */
263263WRITE_LINE_MEMBER (force68k_state::centronics_busy_w){
264        LOG (logerror ("centronics_busy_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
264//      LOG (logerror ("centronics_busy_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
265265        m_centronics_busy = state;
266266}
267267
r249048r249049
269269 * The centronics perror signal is not used by the ROM driver afaik
270270 */
271271WRITE_LINE_MEMBER (force68k_state::centronics_perror_w){
272        LOG (logerror ("centronics_perror_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
272//      LOG (logerror ("centronics_perror_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
273273        m_centronics_perror = state;
274274}
275275
r249048r249049
277277 * The centronics select signal is expected by the ROM on Port B bit 0
278278 */
279279WRITE_LINE_MEMBER (force68k_state::centronics_select_w){
280        LOG (logerror ("centronics_select_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
280//      LOG (logerror ("centronics_select_w(%d) %lld\n", state, m_maincpu->total_cycles ()));
281281        m_centronics_select = state;
282282        m_pit->portb_setbit (0, state);
283283}


Previous 199869 Revisions Next


© 1997-2024 The MAME Team