Introduction

This is a redraw of the schematic for the EPA Micro 68 Computer. I find that it is easier to understand when the functions are grouped properly. Plus, there is a space issue. The component size needs to be kept as small as possible, while still being perfectly readable. And, the drawing space is only 900 pixels wide by 600 pixels high. So the placement of each part is carefully done.

Printing - The diagrams below are dynamic drawings. They are drawn by Javascript when it loads into your browser. This may cause an issue with printing the drawings. To help solve that issue I have provided images of each page. The images are 900 pixels wide by 600 high (111 K) with a white, rather than a green, background.

MPU Signal Description

Proper operation of the MPU requires that certain control and timing signals be provided to accomplish specific functions and that other signal lines be monitored to determine the state of the processor. Listed below is a brief description of the signals that appear in the schematics.

Clocks Phase One and Phase Two (∅1, ∅2) - Two pins are used for a two-phase non-overlapping clock that runs at the VCC voltage level.

Address Bus (A0-A15) - Sixteen pins are used for the Address Bus. The outputs are Tri-State, output only, bus drivers capable of driving one standard TTL load and 130 pF. When the output is turned off, it is essentially an open circuit. This permits the MPU to be used in DMA applications.

Data Bus (D0-D7) - Eight pins are used for the Data Bus. It is Bi-Directional, transferring data to and from the memory and peripheral devices. It also has Tri-State output buffers capable of driving one standard TTL load and 130 pF.

Halt - When this input is in the low state, all activity in the machine will be halted. This input is level sensitive. In the halt mode, the machine will stop at the end of an instruction,. Bus Available will be at a one level. Valid Memory Address will be at zero, and all other three-state lines will be in the three-state mode.

Three-State Control (TSC) - This input causes all of the address lines and the Read/Write line to go into the off or high impedance state. This state will occur 500 ns after TSC = 2.4V. The Valid Memory Address and Bus Avaulable signals will be forced low. The data bus is not affected by TSC and has its own enable (Data Bus Enable). In DMA applications, the Three-State Control line should be brought high on the leading edge of the Phase One Clock. The ∅1 clock must be held in the high state and the ∅2 in the low state for this function to operate properly. The address bus will then be available for other devices to directly address memory. Since the MPU is a dynamic device, it can be held in this state for only 5.0 µs or destruction of data will occur in the MPU.

Read/Write (RD/WR) - This TTL compatible output signals the peripherals and memory devices whether the MPU is in a Read (high) or Write (low) state. The normal standby state of this signal is Read (high). Three-State Control going high will turn Read/Write to the off (high impedance) state. Also, when the processor is halted, it will be in the off state. This output is capable of driving one standard TTL load and 130 pF.

Valid Memory Address (VMA) - This output indicates to peripheral devices that there is a valid address on the address bus. In normal operation, this signal should be utilized for enabling peripheral interfaces such as the PIA and ACIA. This signal is not three-state. One standard TTL load and 30 pF may be directly driven by this active high signal.

Data Bus Enable (DBE) - This input is the three-state control signal for the MPU data bus and will enable the bus drivers when in the high state. This input is TTL compatible, however in normal operation, it would be driven by the phase two clock. During an MPU read cycle, the data bus drivers will be disabled internally. When it is desired that another device control the data bus such as in Direct Memory Access (DMA) applications, DBE should be held low.

Bus Available (BA) - The Bus Available signal will normally be in the low state, when activated, it will go to the high state indicating that the microprocessor had stopped and that the address bus is available. This will occur if the Halt line is in the low state or the processor is in the WAIT state as a result of the execution of a WAIT instruction. At such time, all three-state output drivers will go to their off state and other outputs to their normally inactive level. The processor is removed from the WAIT state by the occurrence of a maskable (mask bit 1 = 0) or nonmaskable interrupt. This output is capable of driving one standard TTL load and 30 pF.

Interrupt Request (IRQ) - This level sensitive input requests that an interrupt sequence be generated within the machine. The processor will wat until it completes the current instruction that is being executed before it recognizes the request. At the time, if the interrupt mask bit in the Conditional Code Register is not set, the machine will begin an interrupt request by setting the interrupt mask bit high so that no further interrupts may occur. At the end of the cycle, a 16-bit address will be loaded that points to a vectoring address which is loaded at these locations FFF8 and FFF9. An address loaded a these locations causes the MPU to branch to an interrupt routine in memory.

The Halt line must be in the high state for interrupts to be reognized.

The IRQ has a high impedance pullup device internal to the chip; however a 3 KΩ external resistor to VCC should be used for Wire-OR and optimum control of interrupts.

Reset - This input is used to reset and start the MPU from a power down condition, resulting from a power failure or an initial start-up of the processor. If a positive edge is detected on the input, this wil signal the MPU to begin the restart sequence. This will start execution of a routine to initialize the processor from its reset condition. All the higher order address lines will be forced high. For the restart, the last two (FFFE, FFFF) locations in memory will be used to load the program that is addressed by the program counter. During the restart routine, the interrupt mask bit is set and must be reset before the MPU can be interrupted by IRQ.

Figure 4 - Initialization of MPU After Restart
4.75 V
VCC
∅ 1
∅ 2
RESET
VMA
> 8 Clock Times
Address Out
= FFFE
Address Out
= FFFF
Address Out = Contents of
FFFE+FFFF
First Instruction Loaded into MPU

Figure 4 shows the initialization of the microprocessor after restart. Reset must be held low for at least eight clock periods after VCC reaches 4.75 volts. If Reset goes high prior to the leading edge of ∅2, on the next ∅1 the first restart memory vector address (FFFE) will appear on the address lines. THis location should contain the higher order eight bits to be stored into the program counter. Following, the next address FFFF should contain the lower eight bits to be stored into the program counter.

Non-Maskable Interrupt (NMI) - A low-going edge on this input requests that a non-mask interrupt sequence be generated within the processor. As with the Interrupt Request signal, the processor will complete the current instruction that is being executed before it reccognizes the NMI signal. The interrupt mask bit in the Condition Code Register has no effect on NMI.

Figure 5 - MPU Flow CHart
RESET
Start Sequence
----------------
FFFE, FFFF
P1
Halt ?
No
Yes
D1
NMI ?
Yes
No
D2
IRQ ?
Yes
No
D3
Machine
on Halt
P2
Halt ?
No
Yes
D4
Mask On ?
No
Yes
D5
Fetch
Instruction
P3
Execute
Instruction
P4
Execute
Interrupt Routine
P5
NMI
FFFC
FFFD
IRQ
FFF8
FFF9
Table 1 - Memory Map for Interrupt Vectors
Vector Description
MS LS
FFFE FFFF Restart
FFFC FFFD Non-Maskable Interrupt
FFFA FFFB Software Interrupt
FFF8 FFF9 Interrupt Request

The Index Register, Program Counter, Accumulators, and Condition Code Register are stored away on the stack. At the end of the cycle, a 16-bit address will be loaded that points to a vectoring address which is located in memory locations FFFC and FFFD. An address loaded at these locations causes the MPU to branch to a non-maskable interrupt routine in memory.

NMI has a high impedance pullup resistor internal to the chip; however a 3KΩ external resistor to VCC should be used for Wire-OR and optimum control of interrupts.

Inputs IRQ and NMI are hardware interrupt lines that are sampled during ∅2 and will start the interrupt routine on the ∅1 following the completion of an instruction.

Figure 5 is a flow chart describing the major decision paths and interrupt vectors of the microprocessor. Table 1 gives the memory map for interrupt vectors.

EPA Micro 68 Block Diagram

The heart of the EPA Micro 68 Computer is shown on Page 1 of the schematic. It includes the Clock, CPU, MIKBUG ROM/RAM. The MIKBUG ROM/RAM block actually consists of a single MC6830 ROM ($E000) and a MC6810 RAM (128 Bytes at $A000). Normally, the MIKBUG ROM/RAM components are not installed or used by the overall EPA Micro 68 system.

A15
A0
D7
D0
∅1
∅2
MC6820
$8008-$800B
MC6820
$8004-$8007
P1
P2
CASSETTE
MIKBUG
MC6830/MC6810
$E000/$A000
LOCAL RAM
MC6810 x 6
$0000-$01FF
ADDR BUFFER
16
16
DATA BUFFER
8
8
ADDRESS BUS
DATA BUS
BI-DIRECTIONAL
MONITOR ROM
82S129 x 4
$F000-$F1FF
P3
E
X
P
A
N
S
I
O
N
B
U
S
EPA Micro 68 MPU, ROM, and RAM - Page 1

This page shows the basic 6800 CPU (U11) with an associated ROM (U9) and RAM (12). This ROM (MC6830) and RAM (MC6810) are not normally used with the EPA Micro 68 and will just be empty 24 pin sockets. You can see that this section of the EPA Micro 68 very closely matches the Motorola MEK6800D1 Evaluation Module.

The intent of U9 and U12 is for the Motorola MCM6830L7 MIKBUG/MINIBUG ROM/RAM, which is described in the Motorola Engineering Note 100. Using the MIKBUG/MINIBUG ROM/RAM is beyond the scope of this section. Just note that it can possibly be use.

Page 1 - EPA Micro 68 - MPU, MIKBUG/MINIBUG ROM, and RAM
T1
T2
CD
A
B
Q
Q
1
2
3
4
5
6
7
MC8602
U18 A
C6
39pF
R6
22K Ω
+
5
V
T1
T2
CD
A
B
Q
Q
15
14
13
12
11
10
9
MC8602
U18 B
C7
39pF
R7
22K Ω
+
5
V
R10
22K Ω
+5V
10
9
8
SN7400
U14
C
R14
680 Ω
+5V
R12
10 Ω
MPU ∅2
U11-37
MPU DBE
U11-34
4
5
6
SN7400
U14
B
R13
680 Ω
+5V
R11
10 Ω
MPU ∅1
U11-3
10
9
8
SN7400
U21
C
∅2
VMA
13
12
11
SN7400
U21
D
VMA·∅2
10
9
8
SN7400
U1
C
VMA·∅2
R/W
4
5
6
SN7400
U1
B
VMA·∅2·R/W
A00
9
A01
10
A02
11
A03
12
A04
13
A05
14
A06
15
A07
16
A08
17
A09
18
A10
19
A11
20
A12
22
A13
23
A14
24
A15
25
D00
33
D01
32
D02
31
D03
30
D04
29
D05
28
D06
27
D07
26
CLK1
3
CLK2
37
RESET
40
NMI
6
HALT
2
IRQ
4
TSC
39
DBE
36
NC1
35
NC2
38
BA
7
VMA
5
R/W
34
U11
M6800
M
P
U
24
A0
23
A1
22
A2
21
A3
20
A4
19
A5
18
A6
17
A7
16
A8
15
A9
D0
2
D1
3
D2
4
D3
5
D4
6
D5
7
D6
8
D7
9
CS0
10
CS1
11
CS2
13
CS3
14
U9
MCM6830
R
O
M
$E000
23
A0
22
A1
21
A2
20
A3
19
A4
18
A5
17
A6
D0
2
D1
3
D2
4
D3
5
D4
6
D5
7
D6
8
D7
9
R/W
16
CS0
10
CS1
11
CS2
12
CS3
13
CS4
14
CS5
15
U12
MCM6810
R
A
M
$A000
A00
A01
A02
A03
A04
A05
A06
A07
A08
A09
A10
A11
A12
A13
A14
A15
D00
D01
D02
D03
D04
D05
D06
D07
MPU ∅1
R11
MPU ∅2
R12
RESET
NMI
HALT
IRQ
TSC
MPU DBE
R12
BA
VMA
A00
A01
A02
A03
A04
A05
A06
A07
A08
A09
A14
A15
A13
D00
D01
D02
D03
D04
D05
D06
D07
A00
A01
A02
A03
A04
A05
A06
D00
D01
D02
D03
D04
D05
D06
D07
A13
A12
A14
A15
VMA·∅2
U15-11
A[15..00]
Pg 1,2,3,4
D[07..00]
Pg 1,2,3,4
R/W

EPA Micro 68, User Ram 5 x 128 Bytes - Page 2

This page shows the user memory space. The EPA Micro 68 really only comes with one MCM6810 in place at U16. If you want more than 128 Bytes of memory, you will need to add extra MCM6810s. The schematic shows the full compliment of MCM6810s. The full compliment will provide you with 640 Bytes (5 x 128) of user memory.

Page 2 - EPA Micro 68 - User Ram 5 x 128 Bytes
23
A0
22
A1
21
A2
20
A3
19
A4
18
A5
17
A6
D0
2
D1
3
D2
4
D3
5
D4
6
D5
7
D6
8
D7
9
R/W
16
CS0
10
CS1
11
CS2
12
CS3
13
CS4
14
CS5
15
U16
MCM6810
R
A
M
$0000
R7
2KΩ
+5V
23
A0
22
A1
21
A2
20
A3
19
A4
18
A5
17
A6
D0
2
D1
3
D2
4
D3
5
D4
6
D5
7
D6
8
D7
9
R/W
16
CS0
10
CS1
11
CS2
12
CS3
13
CS4
14
CS5
15
U19
MCM6810
R
A
M
$0080
23
A0
22
A1
21
A2
20
A3
19
A4
18
A5
17
A6
D0
2
D1
3
D2
4
D3
5
D4
6
D5
7
D6
8
D7
9
R/W
16
CS0
10
CS1
11
CS2
12
CS3
13
CS4
14
CS5
15
U23
MCM6810
R
A
M
$0100
23
A0
22
A1
21
A2
20
A3
19
A4
18
A5
17
A6
D0
2
D1
3
D2
4
D3
5
D4
6
D5
7
D6
8
D7
9
R/W
16
CS0
10
CS1
11
CS2
12
CS3
13
CS4
14
CS5
15
U24
MCM6810
R
A
M
$0180
23
A0
22
A1
21
A2
20
A3
19
A4
18
A5
17
A6
D0
2
D1
3
D2
4
D3
5
D4
6
D5
7
D6
8
D7
9
R/W
16
CS0
10
CS1
11
CS2
12
CS3
13
CS4
14
CS5
15
U28
MCM6810
R
A
M
$0200
A00
A01
A02
A03
A04
A05
A06
A07
A08
A09
A15♰
D00
D01
D02
D03
D04
D05
D06
D07
A00
A01
A02
A03
A04
A05
A06
A07
A08
A09
A15♰
D00
D01
D02
D03
D04
D05
D06
D07
A00
A01
A02
A03
A04
A05
A06
A08
A07
A09
A15♰
D00
D01
D02
D03
D04
D05
D06
D07
A00
A01
A02
A03
A04
A05
A06
A07
A09
A15
A06
D00
D01
D02
D03
D04
D05
D06
D07
A00
A01
A02
A03
A04
A05
A06
A09
A07
A06
A15♰
D00
D01
D02
D03
D04
D05
D06
D07
A[15..00]
Pg 1
A[15..00]
A[15..00]
D[07..00]
Pg 1
D[07..00]
D[07..00]
R/W
Pg 1
VMA·∅2
Pg 1
VMA·∅2
Pg 1

EPA Micro 68, LED Display Interface - Page 3

Page 3 - EPA Micro 68 - LED Display Interface
CA1
40
CA2
39
PA0
2
PA1
3
PA2
4
PA3
5
PA4
6
PA5
7
PA6
8
PA7
9
CB1
18
CB2
19
PB0
10
PB1
11
PB2
12
PB3
13
PB4
14
PB5
15
PB6
16
PB7
17
D0
33
D1
32
D2
31
D3
30
D4
29
D5
28
D6
27
D7
26
CS0
22
CS1
24
CS2
23
RS0
36
RS1
35
R/W
21
Ena
25
Reset
34
IRQA
38
IRQB
37
U25
MC6820
P
I
A
$8008
D[07..00]
Pg 1
D0
D1
D2
D3
D4
D5
D6
D7
A[15..00]
Pg 1
A15
A03
A13
A00
A01
R/W
Pg 1
VMA·∅2
Pg 1
Reset
Pg 1
PA0
PA1
PA2
PA3
PA4
PA5
PA6
PA7
PB1
PB2
PB3
PB4
PB5
PB6
K1
K2
a
b
c
d
e
f
g
RHD
12
4
14
13
8
7
6
1
2
9
LED1
DL704
RHD
A
B
C
D
E
F
G
Q1
2N2222
PB1
K1
K2
a
b
c
d
e
f
g
RHD
12
4
14
13
8
7
6
1
2
9
LED2
DL704
RHD
A
B
C
D
E
F
G
Q2
2N2222
PB2
K1
K2
a
b
c
d
e
f
g
RHD
12
4
14
13
8
7
6
1
2
9
LED3
DL704
RHD
A
B
C
D
E
F
G
Q3
2N2222
PB3
K1
K2
a
b
c
d
e
f
g
RHD
12
4
14
13
8
7
6
1
2
9
LED4
DL704
RHD
A
B
C
D
E
F
G
Q4
2N2222
PB4
K1
K2
a
b
c
d
e
f
g
RHD
12
4
14
13
8
7
6
1
2
9
LED5
DL704
RHD
A
B
C
D
E
F
G
Q5
2N2222
PB5
K1
K2
a
b
c
d
e
f
g
RHD
12
4
14
13
8
7
6
1
2
9
LED6
DL704
RHD
A
B
C
D
E
F
G
Q6
2N2222
PB5
13
12
SN74S04
U22
D
RHD
PA0
11
10
SN74S04
U22
E
A
PA1
9
8
SN74S04
U22
F
B
PA2
1
2
SN74S04
U22
A
C
PA3
3
4
SN74S04
U22
B
D
PA4
5
6
SN74S04
U22
C
E
PA5
13
12
SN74S04
U27
D
F
PA6
11
10
SN74S04
U27
E
G
PA6

EPA Micro 68, Keypad Interface - Page 4

Page 4 - EPA Micro 68 - Keypad Interface
CA1
40
CA2
39
PA0
2
PA1
3
PA2
4
PA3
5
PA4
6
PA5
7
PA6
8
PA7
9
CB1
18
CB2
19
PB0
10
PB1
11
PB2
12
PB3
13
PB4
14
PB5
15
PB6
16
PB7
17
D0
33
D1
32
D2
31
D3
30
D4
29
D5
28
D6
27
D7
26
CS0
22
CS1
24
CS2
23
RS0
36
RS1
35
R/W
21
Ena
25
Reset
34
IRQA
38
IRQB
37
U26
MC6820
P
I
A
$8004-7
CA1
CA2
CB1
CB2
D[07..00]
Pg 1
D0
D1
D2
D3
D4
D5
D6
D7
A[15..00]
Pg 1
A15
A03
A13
A00
A01
R/W
Pg 1
VMA·∅2
Pg 1
Reset
Pg 1
IRQ
Pg 1
CR5
1N4148
R4
2.2K Ω
+
5
V
CR6
1N4148
R5
2.2K Ω
+
5
V
13
12
11
SN7400
U14
D
1
2
3
SN7400
U21
A
4
5
6
SN7400
U21
B
Reset
Pg 1
R15
R16
R17
R18
R19
R20
R21
R22
R15
2.2KΩ
+
5
V
R15
R16
2.2KΩ
+
5
V
R16
R17
2.2KΩ
+
5
V
R17
R18
2.2KΩ
+
5
V
R18
R19
2.2KΩ
+
5
V
R19
R20
2.2KΩ
+
5
V
R20
R21
2.2KΩ
+
5
V
R21
R22
2.2KΩ
+
5
V
R22
P2
K
+5V
L
+5V
D
-5V
B
PA0
2
PA0
3
PA1
4
PA2
5
PA3
6
PA4
7
PA5
8
PA6
9
PA7
10
PB0
11
PB1
12
PB2
13
PB3
14
PB4
15
PB5
16
PB6
17
PB7
J
GND
H
GND
18
CB1
V
CB2
I
CA1
A
CA2
SIDE
+
5
V
-
5
V
CB1
CB2
CA1
CA2
P3
1
+5V
A
+5V
17
-5V
P
PA0
5
PA1
8
PA2
11
PA3
E
PA5
H
PA6
K
PA7
C
PB0
6
PB1
7
PB2
9
PB3
4
PB4
D
PB5
F
PB6
J
PB7
10
V
12
CB1
10
CB2
2
CA1
L
CA2
FRONT
0
1
2
3
4
5
6
7
8
9
A
B
C
D
E
F

EPA Micro 68, Address/Data Buffer, Keyboard Monitor ROM - Page 5

There were a few errors in this section of the original schematic.

  • In the original schematic, on the left side of the 8T28s used for the Data Buffer, there are alternate listings of U6 and U7. But the 8T28 is drawn as a single whole unit. Either the alternate listings of U6 and U7 are incorrect, or the 8T28s are drawn incorrectly. I choose to think that the 8T28s are drawn correctly and that the alternate listing of U6 and U7 is incorrect.
  • In the original schematic, the enables on U6-15 and U7-15 show a signal named VMA·∅2·R/W, but that signal doesn't show anywhere else on the drawing. That signal turns out to be the output of U15-8, which is a SN7430 8-Input NAND gate that drives the monitor PROM chip select.

Page 5A - EPA Micro 68 - Address/Control Signal Buffer
A[15..00]
Pg 1
4
2
3
7
5
6
9
11
10
12
14
13
B/E
15
R/E
1
Am8T26
U2
A2
A3
A0;
A1
A2'
A3'
A0'
A1'
4
2
3
7
5
6
9
11
10
12
14
13
B/E
15
R/E
1
Am8T26
U3
A6
A7
A4
A5
A6'
A7'
A4'
A5'
4
2
3
7
5
6
9
11
10
12
14
13
B/E
15
R/E
1
Am8T26
U4
A8'
U13,U20
A10
A11
A8
A9
A10'
A11'
A9'
A8'
4
2
3
7
5
6
9
11
10
12
14
13
B/E
15
R/E
1
Am8T26
U5
A14
A15
A12
A13
A14'
A15'
A12'
A13'
P1
40
A0'
/V
A1'
/U
A2'
39
A3'
38
A4'
/T
A5'
/S
A6'
37
A7'
36
A8'
/R
A9'
/P
A10'
35
A11'
34
A12'
/N
A13'
/M
A14'
33
A15'
6
R/W'
10
VMA'
/E
BA'
12
Ena
18
TSC
5
Reset
/F
G/H
E
NMI
17
∅2
D
IRQ
A0'
A1'
A2'
A3'
A4'
A5'
A6'
A7'
A8'
A9'
A10'
A11'
A12'
A13'
A14'
A15'
R/W'
VMA'
BA'
4
2
3
7
5
6
9
11
10
12
14
13
B/E
15
R/E
1
Am8T26
U8
BA'
VMA'
R/W'
IRQ
U11-4
∅2
U18-10
NMI
U11-6
G/H
U11-2
Reset
Pg 1.3.4
Ena
Pg 5B
BA
U11-7
VMA
U11-5
R/W
U11-34
R27
2.2KΩ
+
5
V
1
2
3
SN7400
U1
A
TSC
TSC
R9
2.2KΩ
+
5
V
E1
E2

Page 5B - EPA Micro 68 - Data Buffer/Monitor Prom
4
2
3
7
5
6
9
11
10
12
14
13
B/E
15
R/E
1
Am8T28
U6
Ena
Pg 5A
D0
D1
D3
D2
D0
D1
D3
D2
D0'
D1'
D3'
D2'
4
2
3
7
5
6
9
11
10
12
14
13
B/E
15
R/E
1
Am8T28
U7
Ena
Pg 5A
D4
D5
D7
D6
D4
D5
D7
D6
D4'
D5'
D7'
D6'
D[7..00]
U11
P1
31
D0'
29
D1'
/K
D2'
/H
D3'
32
D4'
30
D5'
/L
D6'
/J
D7'
D0'
D1'
D2'
D3'
D4'
D5'
D6'
D7'
1
2
3
4
5
6
11
12
8
SN7430
U15
D7
1N4148
R29
2.2 Ω
+
5
V
Ena
Pg 5B
R26
2.2KΩ
+5V
A12
Pg 1
A13
Pg 1
A14
Pg 1
A15
Pg 1
R/W
Pg 5A
VMA·∅2
Pg 1
2
5
6
X
4
P
R
O
M
5
A0
6
A1
7
A2
4
A3
3
A4
2
A5
1
A6
15
A7
12
O1
11
O2
10
O3
9
O4
CE2
14
CE1
13
82S129
U10
A8'
Pg 5A
A0'
A1'
A2'
A3'
A4'
A5'
A6'
A7'
D0'
D1'
D2'
D3'
2
5
6
X
4
P
R
O
M
5
A0
6
A1
7
A2
4
A3
3
A4
2
A5
1
A6
15
A7
12
O1
11
O2
10
O3
9
O4
CE2
14
CE1
13
82S129
U13
A8'
Pg 5A
A0'
A1'
A2'
A3'
A4'
A5'
A6'
A7'
D0'
D1'
D2'
D3'
2
5
6
X
4
P
R
O
M
5
A0
6
A1
7
A2
4
A3
3
A4
2
A5
1
A6
15
A7
12
O1
11
O2
10
O3
9
O4
CE2
14
CE1
13
82S129
U17
A8'
Pg 5A
A0'
A1'
A2'
A3'
A4'
A5'
A6'
A7'
D4'
D5'
D6'
D7'
2
5
6
X
4
P
R
O
M
5
A0
6
A1
7
A2
4
A3
3
A4
2
A5
1
A6
15
A7
12
O1
11
O2
10
O3
9
O4
CE2
14
CE1
13
82S129
U20
A8'
Pg 5A
A0'
A1'
A2'
A3'
A4'
A5'
A6'
A7'
D4'
D5'
D6'
D7'
A[15..00]'
Pg 5A

EPA Micro 68, Power/Ground - Page 6

This page contains all of the Power/Ground tie-ups, except for local pull-up and pull-down resistors and grounds. The capacitors on each IC are for noise reduction. I named them CU1 to CU28 because they are not on the original schematic, even though they actually exist. They are all listed here because, it is common practice to locate all Power/Ground specifications to the final page of a multi-page drawing.

Page 6 - EPA Micro 68 - Power/Ground
9VAC
DB1
30S05
AC
AC
+
C1
10,000 µF
VI
VO
GND
VR1
LM309K
+5V
R24
220 Ω
LED
P1
A
+5VDC
B
+5VDC
C
+5VDC
1
+5VDC
2
+5VDC
3
+5VDC
W
GND
X
GND
Y
GND
41
GND
42
GND
43
GND
VCC
GND
14
7
U1 - SN7400
+5V
CU1
0.1uF
VCC
GND
16
8
U2 - Am8T26
+5V
CU2
0.1uF
VCC
GND
16
8
U3 - Am8T26
+5V
CU3
0.1uF
VCC
GND
16
8
U4 - Am8T26
+5V
CU4
0.1uF
VCC
GND
16
8
U5 - Am8T26
+5V
CU5
0.1uF
VCC
GND
16
8
U6 - Am8T28
+5V
CU6
0.1uF
VCC
GND
16
8
U7 - Am8T28
+5V
CU7
0.1uF
VCC
GND
16
8
U8 - Am8T26
+5V
CU8
0.1uF
VCC
12
GND
1
U9 - MCM6830
+5V
CU9
0.1uF
VCC
GND
16
8
U10 - 82S129
+5V
CU10
0.1uF
VCC
8
GND
21
1
U11 - M6800
+5V
CU11
0.1uF
VCC
24
GND
1
U12 - MCM6810
+5V
CU12
0.1uF
VCC
GND
16
8
U13 - 82S129
+5V
CU13
0.1uF
VCC
GND
14
7
U14 - SN7400
+5V
CU14
0.1uF
VCC
GND
14
7
U15 - SN7430
+5V
CU15
0.1uF
VCC
24
GND
1
U16 - MCM6810
+5V
CU16
0.1uF
VCC
GND
16
8
U17 - 82S129
+5V
CU17
0.1uF
VCC
GND
16
8
U18 - MC8602
+5V
CU18
0.1uF
VCC
24
GND
1
U19 - MCM6810
+5V
CU19
0.1uF
VCC
GND
16
8
U20 - 82S129
+5V
CU20
0.1uF
VCC
GND
14
7
U21 - SN7400
+5V
CU21
0.1uF
VCC
GND
14
7
U22 - SN74S04
+5V
CU22
0.1uF
VCC
24
GND
1
U23 - MCM6810
+5V
CU23
0.1uF
VCC
24
GND
1
U24 - MCM6810
+5V
CU24
0.1uF
VCC
20
GND
1
U25 - MC6820
+5V
CU25
0.1uF
VCC
20
GND
1
U26 - MC6820
+5V
CU26
0.1uF
VCC
GND
14
7
U27 - SN74S04
+5V
CU27
0.1uF
VCC
24
GND
1
U28 - MCM6810
+5V
CU28
0.1uF