VHDL - DE0 - QUARTUS II PLL not showing output in modsim
问题 Hi I am trying to use a phased lock loop for clock generation for a VGA controller. I had no luck and decided to make my own clock which then worked fine. I got the VGA controller working. Going back to PLL's though I still can't get a PLL selected to give me an output. I have made a little test model to simulate it. LIBRARY IEEE; USE IEEE.std_logic_1164.ALL; ENTITY PLL4 IS PORT ( clk : IN std_logic; a : IN std_logic; rst : IN std_logic:='0'; x : OUT std_logic ); END ENTITY PLL4; ARCHITECTURE