summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/comx_thm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/comx_thm.c')
-rw-r--r--src/mess/machine/comx_thm.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mess/machine/comx_thm.c b/src/mess/machine/comx_thm.c
index ea2f90411d2..ffb6b78f787 100644
--- a/src/mess/machine/comx_thm.c
+++ b/src/mess/machine/comx_thm.c
@@ -102,11 +102,11 @@ UINT8 comx_thm_device::comx_mrd_r(address_space &space, offs_t offset, int *extr
UINT8 comx_thm_device::comx_io_r(address_space &space, offs_t offset)
{
/*
- INP 2 is used for the printer status, where:
- b0=1: Printer Not Ready
- b1=1: Energizing Head
- b2=1: Head At Position 0
- */
+ INP 2 is used for the printer status, where:
+ b0=1: Printer Not Ready
+ b1=1: Energizing Head
+ b2=1: Head At Position 0
+ */
return 0;
}
@@ -119,10 +119,10 @@ UINT8 comx_thm_device::comx_io_r(address_space &space, offs_t offset)
void comx_thm_device::comx_io_w(address_space &space, offs_t offset, UINT8 data)
{
/*
- OUT 2 is used to control the thermal printer where:
- Q = 0, b0-7: Pixel 1 to 8
- Q = 1, b7: Pixel 9 (if b0-6=#21)
- Q = 1, b3=1: Move head right
- Q = 1, b0-7=#12: Move head left
- */
+ OUT 2 is used to control the thermal printer where:
+ Q = 0, b0-7: Pixel 1 to 8
+ Q = 1, b7: Pixel 9 (if b0-6=#21)
+ Q = 1, b3=1: Move head right
+ Q = 1, b0-7=#12: Move head left
+ */
}