Forum Discussion
Altera_Forum
Honored Contributor
15 years ago --- Quote Start --- Change the asynchronous process to a synchronous one. process(clk,wr_s,memdrive_s,aludrive_s,ld_x_s,ld_y _s,mainbus,dataout_m,math_out) begin if rising_edge(clk) then if (wr_s = '1') then datain_mem <= mainbus ; ..... .... ... --- Quote End --- and you can remove all signals except clk from the sensitivity list.