From 5e4d282f5bb44933fd13dcc2899a0084a4d57e88 Mon Sep 17 00:00:00 2001 From: cmy1230 <20300750023@fudan.edu.cn> Date: Mon, 28 Mar 2022 20:36:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E4=BA=86m1=E3=80=81m2?= =?UTF-8?q?=E7=9A=84=E6=95=B0=E6=8D=AE=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/demodulation.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demodulation.v b/src/demodulation.v index 2e65169..cb6597e 100644 --- a/src/demodulation.v +++ b/src/demodulation.v @@ -30,7 +30,7 @@ module demodulation( reg [7:0]I_last=0; reg [7:0]Q_last=0; - reg [15:0]m1,m2; + wire [15:0]m1,m2; Mul u1(I,Q_last,m1); Mul u2(Q,I_last,m2);