From d36312347320006b4fdf096df3283223dbd4a302 Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Mon, 15 Jun 2026 12:43:46 -0700 Subject: some models --- sn7425.v | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 sn7425.v (limited to 'sn7425.v') diff --git a/sn7425.v b/sn7425.v new file mode 100644 index 0000000..6ac9bb5 --- /dev/null +++ b/sn7425.v @@ -0,0 +1,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 -- cgit v1.2.3