diff options
Diffstat (limited to 'src/emu/machine/adc083x.c')
-rw-r--r-- | src/emu/machine/adc083x.c | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/emu/machine/adc083x.c b/src/emu/machine/adc083x.c index 06ad3b4a3fc..6e14a262e32 100644 --- a/src/emu/machine/adc083x.c +++ b/src/emu/machine/adc083x.c @@ -11,7 +11,7 @@ #define VERBOSE_LEVEL ( 0 ) -INLINE void ATTR_PRINTF( 3, 4 ) verboselog( int n_level, running_machine *machine, const char *s_fmt, ... ) +INLINE void ATTR_PRINTF( 3, 4 ) verboselog( int n_level, running_machine &machine, const char *s_fmt, ... ) { if( VERBOSE_LEVEL >= n_level ) { @@ -20,7 +20,7 @@ INLINE void ATTR_PRINTF( 3, 4 ) verboselog( int n_level, running_machine *machin va_start( v, s_fmt ); vsprintf( buf, s_fmt, v ); va_end( v ); - logerror( "%s: %s", machine ->describe_context( ), buf ); + logerror( "%s: %s", machine.describe_context( ), buf ); } } @@ -116,7 +116,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_cs_write ) if( adc083x->cs != state ) { - verboselog( 2, device->machine, "adc083x_cs_write( %s, %d )\n", device->tag(), state ); + verboselog( 2, device->machine(), "adc083x_cs_write( %s, %d )\n", device->tag(), state ); } if( adc083x->cs == 0 && state != 0 ) @@ -234,7 +234,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) if( adc083x->clk != state ) { - verboselog( 2, device->machine, "adc083x_clk_write( %s, %d )\n", device->tag(), state ); + verboselog( 2, device->machine(), "adc083x_clk_write( %s, %d )\n", device->tag(), state ); } if( adc083x->cs == 0 ) @@ -246,7 +246,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) case STATE_WAIT_FOR_START: if( adc083x->di != 0 ) { - verboselog( 1, device->machine, "adc083x %s got start bit\n", device->tag() ); + verboselog( 1, device->machine(), "adc083x %s got start bit\n", device->tag() ); adc083x->state = STATE_SHIFT_MUX; adc083x->sars = 0; adc083x->sgl = 0; @@ -257,7 +257,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) } else { - verboselog( 1, device->machine, "adc083x %s not start bit\n", device->tag() ); + verboselog( 1, device->machine(), "adc083x %s not start bit\n", device->tag() ); } break; @@ -269,7 +269,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) { adc083x->sgl = 1; } - verboselog( 1, device->machine, "adc083x %s sgl <- %d\n", device->tag(), adc083x->sgl ); + verboselog( 1, device->machine(), "adc083x %s sgl <- %d\n", device->tag(), adc083x->sgl ); break; case 1: @@ -277,7 +277,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) { adc083x->odd = 1; } - verboselog( 1, device->machine, "adc083x %s odd <- %d\n", device->tag(), adc083x->odd ); + verboselog( 1, device->machine(), "adc083x %s odd <- %d\n", device->tag(), adc083x->odd ); break; case 2: @@ -285,7 +285,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) { adc083x->sel1 = 1; } - verboselog( 1, device->machine, "adc083x %s sel1 <- %d\n", device->tag(), adc083x->sel1 ); + verboselog( 1, device->machine(), "adc083x %s sel1 <- %d\n", device->tag(), adc083x->sel1 ); break; case 3: @@ -293,7 +293,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) { adc083x->sel0 = 1; } - verboselog( 1, device->machine, "adc083x %s sel0 <- %d\n", device->tag(), adc083x->sel0 ); + verboselog( 1, device->machine(), "adc083x %s sel0 <- %d\n", device->tag(), adc083x->sel0 ); break; } @@ -309,11 +309,11 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) adc083x->sars = 0; if( device->type() == ADC0838 && adc083x->se != 0 ) { - verboselog( 1, device->machine, "adc083x %s not se\n", device->tag() ); + verboselog( 1, device->machine(), "adc083x %s not se\n", device->tag() ); } else { - verboselog( 1, device->machine, "adc083x %s got se\n", device->tag() ); + verboselog( 1, device->machine(), "adc083x %s got se\n", device->tag() ); adc083x->state = STATE_OUTPUT_LSB_FIRST; adc083x->bit = 1; } @@ -326,7 +326,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) switch( adc083x->state ) { case STATE_MUX_SETTLE: - verboselog( 1, device->machine, "adc083x %s mux settle\n", device->tag() ); + verboselog( 1, device->machine(), "adc083x %s mux settle\n", device->tag() ); adc083x->output = adc083x_conversion( device ); adc083x->state = STATE_OUTPUT_MSB_FIRST; adc083x->bit = 7; @@ -336,7 +336,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) case STATE_OUTPUT_MSB_FIRST: adc083x->_do = ( adc083x->output >> adc083x->bit ) & 1; - verboselog( 1, device->machine, "adc083x %s msb %d -> %d\n", device->tag(), adc083x->bit, adc083x->_do ); + verboselog( 1, device->machine(), "adc083x %s msb %d -> %d\n", device->tag(), adc083x->bit, adc083x->_do ); adc083x->bit--; if( adc083x->bit < 0 ) @@ -354,7 +354,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_clk_write ) case STATE_OUTPUT_LSB_FIRST: adc083x->_do = ( adc083x->output >> adc083x->bit ) & 1; - verboselog( 1, device->machine, "adc083x %s lsb %d -> %d\n", device->tag(), adc083x->bit, adc083x->_do ); + verboselog( 1, device->machine(), "adc083x %s lsb %d -> %d\n", device->tag(), adc083x->bit, adc083x->_do ); adc083x->bit++; if( adc083x->bit == 8 ) @@ -384,7 +384,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_di_write ) if( adc083x->di != state ) { - verboselog( 2, device->machine, "adc083x_di_write( %s, %d )\n", device->tag(), state ); + verboselog( 2, device->machine(), "adc083x_di_write( %s, %d )\n", device->tag(), state ); } adc083x->di = state; @@ -400,7 +400,7 @@ WRITE_LINE_DEVICE_HANDLER( adc083x_se_write ) if( adc083x->se != state ) { - verboselog( 2, device->machine, "adc083x_se_write( %s, %d )\n", device->tag(), state ); + verboselog( 2, device->machine(), "adc083x_se_write( %s, %d )\n", device->tag(), state ); } adc083x->se = state; @@ -414,7 +414,7 @@ READ_LINE_DEVICE_HANDLER( adc083x_sars_read ) { adc0831_state *adc083x = get_safe_token( device ); - verboselog( 1, device->machine, "adc083x_sars_read( %s ) %d\n", device->tag(), adc083x->sars ); + verboselog( 1, device->machine(), "adc083x_sars_read( %s ) %d\n", device->tag(), adc083x->sars ); return adc083x->sars; } @@ -426,7 +426,7 @@ READ_LINE_DEVICE_HANDLER( adc083x_do_read ) { adc0831_state *adc083x = get_safe_token( device ); - verboselog( 1, device->machine, "adc083x_do_read( %s ) %d\n", device->tag(), adc083x->_do ); + verboselog( 1, device->machine(), "adc083x_do_read( %s ) %d\n", device->tag(), adc083x->_do ); return adc083x->_do; } |