From Newsgroup: comp.lang.vhdl
On Friday, June 9, 2023 at 6:44:18rC>AM UTC-4, Indrayudh Nandy wrote:
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
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
--- Synchronet 3.21d-Linux NewsLink 1.2