From 44e07aea5c6b7f2b9408b64be939bafd052d9c80 Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Tue, 11 Mar 2014 18:39:47 +0000 Subject: [PATCH] (MESS) hardbox: Fix comment. (nw) --- src/emu/bus/ieee488/hardbox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/bus/ieee488/hardbox.c b/src/emu/bus/ieee488/hardbox.c index a0947b33683..6b799543c9b 100644 --- a/src/emu/bus/ieee488/hardbox.c +++ b/src/emu/bus/ieee488/hardbox.c @@ -149,7 +149,7 @@ READ8_MEMBER( hardbox_device::ppi0_pc_r ) UINT8 data = ioport("SW1")->read(); /* DIP switches on PC1,PC2,PC3 configure the IEEE-488 primary address. - We get the address from m_address instead. */ + We get the address from the slot instead. */ data |= ((m_slot->get_address() - 8) << 1) ^ 0xff; return data;