summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/mtx.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
commit0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch)
tree234109de1123b13f217494af4b3f8efad346d5cc /src/mess/machine/mtx.c
parent111157ca09a9ff60fe4a9ba49173c315e94314fa (diff)
Cleanups and version bumpmame0148
Diffstat (limited to 'src/mess/machine/mtx.c')
-rw-r--r--src/mess/machine/mtx.c104
1 files changed, 52 insertions, 52 deletions
diff --git a/src/mess/machine/mtx.c b/src/mess/machine/mtx.c
index 29df29b52df..539f4bb5c26 100644
--- a/src/mess/machine/mtx.c
+++ b/src/mess/machine/mtx.c
@@ -61,18 +61,18 @@ static void bankswitch(running_machine &machine, UINT8 data)
{
/*
- bit description
-
- 0 P0
- 1 P1
- 2 P2
- 3 P3
- 4 R0
- 5 R1
- 6 R2
- 7 RELCPMH
-
- */
+ bit description
+
+ 0 P0
+ 1 P1
+ 2 P2
+ 3 P3
+ 4 R0
+ 5 R1
+ 6 R2
+ 7 RELCPMH
+
+ */
mtx_state *state = machine.driver_data<mtx_state>();
address_space &program = machine.device(Z80_TAG)->memory().space(AS_PROGRAM);
ram_device *messram = machine.device<ram_device>(RAM_TAG);
@@ -148,18 +148,18 @@ READ8_MEMBER(mtx_state::mtx_prt_r)
/*
- bit description
+ bit description
- 0 BUSY
- 1 ERROR
- 2 PE
- 3 SLCT
- 4
- 5
- 6
- 7
+ 0 BUSY
+ 1 ERROR
+ 2 PE
+ 3 SLCT
+ 4
+ 5
+ 6
+ 7
- */
+ */
UINT8 data = 0;
@@ -240,35 +240,35 @@ WRITE8_MEMBER(mtx_state::hrx_address_w)
{
/*
- bit description
+ bit description
- 0 A8
- 1 A9
- 2 A10
- 3
- 4
- 5 attribute memory write enable
- 6 ASCII memory write enable
- 7 cycle (0=read/1=write)
+ 0 A8
+ 1 A9
+ 2 A10
+ 3
+ 4
+ 5 attribute memory write enable
+ 6 ASCII memory write enable
+ 7 cycle (0=read/1=write)
- */
+ */
}
else
{
/*
- bit description
+ bit description
- 0 A0
- 1 A1
- 2 A2
- 3 A3
- 4 A4
- 5 A5
- 6 A6
- 7 A7
+ 0 A0
+ 1 A1
+ 2 A2
+ 3 A3
+ 4 A4
+ 5 A5
+ 6 A6
+ 7 A7
- */
+ */
}
}
@@ -306,18 +306,18 @@ WRITE8_MEMBER(mtx_state::hrx_attr_w)
{
/*
- bit description
+ bit description
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
+ 0
+ 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
- */
+ */
}
/***************************************************************************