summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/hp48.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/hp48.cpp')
-rw-r--r--src/mame/machine/hp48.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/machine/hp48.cpp b/src/mame/machine/hp48.cpp
index 6b1ece830ba..88059d46762 100644
--- a/src/mame/machine/hp48.cpp
+++ b/src/mame/machine/hp48.cpp
@@ -262,12 +262,12 @@ void hp48_state::hp48_update_annunciators()
bit 7: master enable
*/
int markers = HP48_IO_8(0xb);
- output_set_value( "lshift0", (markers & 0x81) == 0x81 );
- output_set_value( "rshift0", (markers & 0x82) == 0x82 );
- output_set_value( "alpha0", (markers & 0x84) == 0x84 );
- output_set_value( "alert0", (markers & 0x88) == 0x88 );
- output_set_value( "busy0", (markers & 0x90) == 0x90 );
- output_set_value( "transmit0", (markers & 0xb0) == 0xb0 );
+ machine().output().set_value( "lshift0", (markers & 0x81) == 0x81 );
+ machine().output().set_value( "rshift0", (markers & 0x82) == 0x82 );
+ machine().output().set_value( "alpha0", (markers & 0x84) == 0x84 );
+ machine().output().set_value( "alert0", (markers & 0x88) == 0x88 );
+ machine().output().set_value( "busy0", (markers & 0x90) == 0x90 );
+ machine().output().set_value( "transmit0", (markers & 0xb0) == 0xb0 );
}