Re: [Ghdl-discuss] Calling functions written in VHDL from a linked C-language-compiled binary

2013-04-13 Thread René Doß
first Davids changed code works. This is nices. equiv_process: process begin global = get_global(2); wait until board_clk'event and board_clk = '1'; end process equiv_process: The wait reactivate the process. The changing is only valid in the next clock cycle. T Other question: exist an

Re: [Ghdl-discuss] Calling functions written in VHDL from a linked C-language-compiled binary

2013-04-13 Thread David Koontz
On 13 Apr 2013, at 9:28 PM, René Doß d...@gmx.de wrote: first Davids changed code works. This is nices. equiv_process: process begin global = get_global(2); wait until board_clk'event and board_clk = '1'; end process equiv_process: The wait reactivate the process. The