Altera_Forum
Honored Contributor
12 years agoVerilog syntax if statement
what is the correct syntax for if statement with multiple conditions? I've written(which works): always@(posedge iGO or negedge iRST)//on key press event
begin
if(!iRST)
go_e...