@@ -70,7 +70,7 @@ PIN 17 = !DTACK ; /* Zorro III termination. */
7070
7171/** LOGICAL TERMS: **/
7272
73- /* It takes both MYBUS and MASTER to fully qualify a cycle. If MYBUS is
73+ /* It takes both MYBUS and MASTER to fully qualify a cycle. If MYBUS is
7474 asserted but master not, we're in the process of bus arbitration. If
7575 MASTER is asserted but not MYBUS, the SCSI chip is master of the A4091
7676 bus and waiting for a grant to the Zorro bus. In both of these cases,
@@ -85,13 +85,13 @@ slavecyc = !MYBUS & !MASTER;
8585/* This is the data output enable control. When data buffers are
8686 pointed toward the board, they can turn on early in the cycle.
8787 This is a write for slave access, a read for DMA access. When
88- the data buffers are pointed out toward the bus, the have to
89- wait until DOE to turn on; this is a slave read or DMA write.
88+ the data buffers are pointed out toward the bus, the have to
89+ wait until DOE to turn on; this is a slave read or DMA write.
9090 When the board responds to itself, the buffers are left off. If
91- the NOZ3 signal is asserted on a write (eg, master driving the
91+ the NOZ3 signal is asserted on a write (eg, master driving the
9292 Zorro III bus), DBOE must be negated immediately. */
9393
94- DBOE = slavecyc & SLAVE & !READ & FCS
94+ DBOE = slavecyc & SLAVE & !READ & FCS
9595 # slavecyc & SLAVE & READ & FCS & DOE
9696 # mastercyc & !SLAVE & !READ & FCS & DOE & !ABOEH & !NOZ3
9797 # mastercyc & !SLAVE & READ & FCS;
@@ -106,11 +106,11 @@ D2Z = slavecyc & READ & FCS & SLAVE
106106Z2D = slavecyc & !READ & FCS & SLAVE
107107 # mastercyc & READ & FCS & !SLAVE;
108108
109- /* For either kind of access, data is latched when DTACK is asserted and
109+ /* For either kind of access, data is latched when DTACK is asserted and
110110 we're in data time. Data is held through the end of the cycle. */
111111
112112DBLT = slavecyc & FCS & DTACK & DOE & SLAVE
113- # mastercyc & FCS & DTACK & DOE & !SLAVE
113+ # mastercyc & FCS & DTACK & DOE & !SLAVE
114114 # DBLT & FCS;
115115
116116/* The address buffer controls. I want addresses going in unless the SCSI
@@ -128,13 +128,13 @@ ABOEH.D = slavecyc
128128ABOEH.AR = NOZ3;
129129
130130/* The board needs to generate a DTACK here for slave accesses. Most
131- of the slave terminations are very simple, since they're either
131+ of the slave terminations are very simple, since they're either
132132 based on a termination signal (SLACK for SCSI, NACK for net or ROM)
133133 or they're instant (interrupt vector R/W). During configuration,
134- any write should also be instantly terminated, that would be a
134+ any write should also be instantly terminated, that would be a
135135 configuration register write (reads are governed by ROM access). */
136136
137- DTACK = SLAVE & FCS & DOE & SLACK
137+ DTACK = SLAVE & FCS & DOE & SLACK
138138 # SLAVE & FCS & DOE & INTREG
139139 # SLAVE & FCS & DOE & INTVEC
140140 # SLAVE & FCS & DOE & SID
@@ -143,4 +143,4 @@ DTACK = SLAVE & FCS & DOE & SLACK
143143 # SLAVE & FCS & DOE & DTACK;
144144
145145DTACK.OE = SLAVE & FCS & !NOZ3;
146-
146+
0 commit comments