Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Concurrent assignment to a non-net q is not permitted

628 views
Skip to first unread message

Indrayudh Nandy

unread,
Jun 9, 2023, 6:44:18 AM6/9/23
to
Hi,
I am facing this error in vivado while writing a code for conversion of D flip flop to JK flip flop.
Here is my code :
module D_to_jk(j,k,clk,rst,q);
input j,k,clk,rst;
output reg q;
wire w1,w2,w3,w4;
wire q_bar;
assign w1=~k;
assign q_bar= ~q;
assign w2= j&q_bar;
assign w3= w1&q;
assign w4= w2|w3;
D d(w4,clk,rst,q);
endmodule

Please point me out the error so that I may rectify.
Thanks
Indrayudh

Richard Damon

unread,
Jun 9, 2023, 11:07:50 AM6/9/23
to
YOUR q needs to be a wire which you are connecting to the actual reg
which will be in the D primative.

gnuarm.del...@gmail.com

unread,
Jun 9, 2023, 7:32:47 PM6/9/23
to
I think your biggest error, is trying to compile a Verilog program with a VHDL tool, perhaps?

--

Rick C.

- Get 1,000 miles of free Supercharging
- Tesla referral code - https://ts.la/richard11209
0 new messages