VHDL: How to use CLK and RESET in process

后端 未结 2 1477
别跟我提以往
别跟我提以往 2020-12-11 06:49

I have written VHDL code for VGA controller for spartan 3E board. The code simulates and works well without the reset and clk process in the code below. But after inserting

2条回答
  •  盖世英雄少女心
    2020-12-11 07:23

    You cannot have several drivers for one signal. If you don't have the (clk, reset) process the hcount and vcount signals are each driven by only one process. But when you add the (clk, reset) process it has concurrent drivers.

提交回复
热议问题