From 6099f59513fe53bc25daf109d8280c41180a9249 Mon Sep 17 00:00:00 2001 From: Lane Brooks Date: Thu, 11 Feb 2010 14:06:12 -0700 Subject: [PATCH] Added BUFG --- BUFG.v | 4 ++++ README | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 BUFG.v create mode 100644 README diff --git a/BUFG.v b/BUFG.v new file mode 100644 index 0000000..eeb6f6c --- /dev/null +++ b/BUFG.v @@ -0,0 +1,4 @@ +module BUFG (output O, input I); + assign O=I; +endmodule + diff --git a/README b/README new file mode 100644 index 0000000..7f2a927 --- /dev/null +++ b/README @@ -0,0 +1,2 @@ +This is mainly a simulation library of xilinx primitives that are +verilator compatible. \ No newline at end of file