Home > other >  Why am I in the quartus after initialization, since and still pending state, the input is the figure
Why am I in the quartus after initialization, since and still pending state, the input is the figure

Time:09-20

The module LOOP_lpf (CLK, rst_n x_in, y_out, temp);
The input CLK, rst_n;//the clock and reset signal
Input [26:0] x_in;//input: phase output module
The output/26:0 y_out;//the loop filter output
The output/26:0 temp;
Reg [26:0] temp;
Reg [26:0] y_out;

Always @ (posedge CLK or negedge rst_n)
if(! Rst_n)
The begin
Y_out & lt;=0;
Temp & lt;=0;
End
The else
The begin//for loop filter operation
Y_out & lt; 4={{{x_in [26]}}, x_in [David]} - {{7 {x_in [26]}}, x_in [then]}.//
Temp & lt;=temp + {{{10 x_in [26]}}, x_in [though]}.//
End

endmodule

CodePudding user response:

I can't let the mobile end here figure,, according to the pictures in the site has a
https://hifpga.com/%E9%97%AE%E9%A2%98/37537/%E4%B8%BA%E4%BB%80%E4%B9%88%E6%88%91quartus%E4%B8%AD%E5%88%9D%E5%A7%8B%E5%8C%96%E5%90%8E%E8%87%AA%E5%8A%A0%E5%90%8E%E8%BF%98%E6%98%AF%E6%9C%AA%E5%AE%9A%E6%80%81%E5%91%A2%E6%B1%82%E5%A4%A7%E4%BD%AC%E6%8C%87%E6%95%99/
  • Related