1. Darokcamper

    Verilog : It's supposed to be a MOD10 counter but it counts from 0 to 9 and resets to 4, why??

    Verilog : It's supposed to be a MOD10 counter but it counts from 0 to 9 and resets to 4, why?? Please give me the solution as a code and explaination for it if possible. module MOD10 (clk, clr, q); input clk, clr; output [3:0] q; wire x, w; assign x = q[3] & q[1]; //...
  2. itskrish

    test bench code

    hi this is my vlsi term project (stop watch) can anyone help me generating the test bench code in vhdl
  3. VasantJ3

    Is there a way to make the verilog port declaration based on a MACRO value

    Basically, what I am trying to achieve is that, There is a macro REG_COUNT. Based on the value inside the macro, the N number registers get initialized. But I also want to create dedicated output ports from each of these registers. The number of registers is based on the REG_COUNT macro value...
  4. T

    I want to print characters on LCD with Basys3 board

    Hello, everyone I want to print characters on LCD with Basys3 I am using xilinx tool and verilog. The LCD screen is illuminated and a square is printed. But characters are not printed How can I solve this problem? help me plz..
  5. Swaysceptile

    Trouble simulating the output for a VHDL design code

    A VHDL design code for a remote-controlled garage door opener with sensors is provided to us. It has 8 states, 4 for each door. Testbench is not provided, and I did one (with the help of a testbench generator as well). The output should look something like this: ] I used web application...
Top