DESCRIPTION | CONNECTION DIAGRAM (14-pin DIP) | TRUTH TABLE (each gate) | INPUT LOADING / FAN-OUT | DC CHARACTERISTICS OVER OPERATING TEMPERATURE RANGE | AC CHARACTERISTICS | VERILOG MODEL
The 74F20 contains two independent 4-input NAND gates in a 14-pin
package.
Logic function (each gate): Z = /(A * B * C * D)
(output LOW only when all four inputs are HIGH)
Pin Function Pin Function --- ------------------- --- ------------------- 1 A1 gate 1 input 14 Vcc 2 B1 gate 1 input 13 D2 gate 2 input 3 NC 12 C2 gate 2 input 4 C1 gate 1 input 11 NC 5 D1 gate 1 input 10 B2 gate 2 input 6 Z1 gate 1 output 9 A2 gate 2 input 7 GND 8 Z2 gate 2 output
A B C D Z --- --- --- --- --- H H H H L any input L H H = HIGH voltage level; L = LOW voltage level.
Pin Names Description U.L. HIGH/LOW
----------- ------------- -------------
Inputs 0.5 / 0.375
Outputs 25 / 12.5
Symbol Parameter Min Typ Max Units Conditions ------ -------------------- --- --- ---- ----- --------------------- ICCH Power Supply Current 1.4 mA VIN = Gnd, Vcc = Max ICCL Power Supply Current 5.1 mA VIN = Open, Vcc = Max
Symbol Parameter CL Min Typ Max Units ------ --------------- ----- --- --- --- ----- tPLH Propagation Dly 15 pF 1.5 2.9 3.9 ns tPLH Propagation Dly 50 pF 2.0 -- 6.0 ns tPHL Propagation Dly 15 pF 1.5 2.8 3.8 ns tPHL Propagation Dly 50 pF 2.0 -- 5.5 ns
Data sheet transcription as plain text
// ============================================================================ // f20.v — 54F/74F20 Dual 4-Input NAND Gate // // Fairchild FAST (Advanced Schottky TTL) // Source: docs/devices/54F74F20.txt (1980 Fairchild FAST Data Book, page 4-9) // (data sheet page marked "Preliminary") // // Logic function (each gate): Z = ~(A & B & C & D) // // Timing values from the data sheet AC Characteristics table, // 54F/74F column (T_A = +25 C, V_CC = +5.0 V, C_L = 15 pF), min:typ:max ns. // The sheet's second row, C_L = 50 pF, gives min/max only: // A, B, C or D to Z tPLH 2.0 / 6.0 tPHL 2.0 / 5.5 ns // // Ports are scalar and named after the data sheet pin names: Icarus Verilog // does not fully support multi-bit (parallel) specify path connections, so // vector ports would get incorrect per-bit delays. // ============================================================================ `timescale 1ns/100ps module f20 ( input wire a1, b1, c1, d1, // gate 1 inputs output wire z1, // gate 1 output input wire a2, b2, c2, d2, // gate 2 inputs output wire z2 // gate 2 output ); assign z1 = ~(a1 & b1 & c1 & d1); assign z2 = ~(a2 & b2 & c2 & d2); specify // Propagation delay, A, B, C or D to Z (data sheet: tPLH 1.5/2.9/3.9, // tPHL 1.5/2.8/3.8 ns) specparam tlh = 1.5:2.9:3.9; specparam thl = 1.5:2.8:3.8; (a1, b1, c1, d1 => z1) = (tlh, thl); (a2, b2, c2, d2 => z2) = (tlh, thl); endspecify endmodule