annotate venus/src/core/buffer_74AXP1T34.v @ 94:4502eec1e805

D405: use Nexperia part sourced from Digi-Key direct The previously selected part was from a Digi-Key marketplace vendor, and they seem to not actually have that part, as the order has been in limbo for over a month - so I put in the time and effort to look around, and found a readily available equivalent part from Nexperia.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 11 Jan 2022 19:11:22 +0000
parents 93b238ad7d6e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
85
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 module buffer_74AXP1T34 (GND, Vcci, Vcco, A, Y);
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 input GND, Vcci, Vcco;
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 input A;
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 output Y;
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 /* instantiate the package; the mapping of signals to pins is defined here */
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 pkg_XSON6 pkg (.pin_1(Vcci),
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 .pin_2(A),
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 .pin_3(GND),
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 .pin_4(Y),
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 .pin_5(), /* no connect */
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 .pin_6(Vcco)
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 );
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16
93b238ad7d6e first preparations for changing flash+RAM MCP to S71PL129N
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 endmodule