0
請誰能幫我寫兩個條件語句,例如 兩者應該給予相同的輸出...例如:Verilog的條件表達式
如果我寫了下面這是給輸出,但 與所提到的方法大量延遲
if(count==3'd2 || i<=16'd8192) begin
count = 3'd1;
AL1 = x[i]+x[i+1];
DL1 = x[i]-x[i+1];
i = i+2;
end
else begin
count = count+1'd1;
i = 16'd0;
end
我得到錯誤,如果這樣寫代碼...
if (i<=16'd8192) begin
if (count==3'd2) begin
count = 3'd1;
AL1 = x[i]+x[i+1];
DL1 = x[i]-x[i+1];
i = i+2;
end
else begin
count = count+1'd1;
end
else begin
i = 16'd0;
end
請幫我這個
我試着用第二種方法運行代碼......但最初我面臨一些錯誤......現在我得到了輸出......謝謝你摩根.. – user3178637
@ user3178637優秀。 – Morgan