Forum is an online discussion forum where youth or even the experienced professionals discuss their queries related to and get answers for their questions from other talented individuals. An online discussion can be started by asking questions, helping others with answers. The best part is that it is very simple and is free of cost.
can someone please give me the code to design the subtractor for single precision floating point numbers .thanks in advance .
Can anyone provide me with the Verilog code, and test bench to create a mod=4, aysnchronous up-down counter only using J-K Flip Flop.
#5 a = b; a = #5 b; #5 is five delay units,first statement is clear ,but the second one I am not getting.
what is the easy and efficient way to write code in verilog? what is the logic or writing the code?
please help me for Verilog syntax errors for basic 2/1mux module mux2_1(F,in1,in0,s); input in0,in1,s; output F; reg F; always @ (in1 or in0 or s); if(s) F = i ...