blob: 6ac9bb5935ee5594c4f920f674dc37b87020c453 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
`timescale 1ns/1ps
module sn7423
#(parameter tPLH = 0, tPHL = 0)
(input [1:0] A,
input [1:0] B,
input [1:0] C,
input [1:0] D,
input [1:0] G,
output [1:0] Y);
assign #(tPLH, tPHL) Y = ~(G & (A | B | C | D));
endmodule
|