From: Luke Kenneth Casson Leighton Date: Thu, 3 Jun 2021 14:45:41 +0000 (+0100) Subject: syntax error in pll.v X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cf1fb6a0edd6d6c88c8810a6a9d9266e381846b6;p=libresoc-litex.git syntax error in pll.v --- diff --git a/libresoc/pll.v b/libresoc/pll.v index 9dc8428..19e8b60 100644 --- a/libresoc/pll.v +++ b/libresoc/pll.v @@ -5,6 +5,6 @@ module pll(input [0:0] ref_v, output [0:0] vco_test_ana, output [0:0] out_v); /* fake PLL */ - assign out_v = ref; + assign out_v = ref_v; endmodule