討論串[問題] verilog 組合邏輯的delay
共 2 篇文章
首頁
上一頁
1
下一頁
尾頁
內容預覽:
always @(state or inData). begin. case(state). S0:. begin. case(inData). 4'b0000: next_state = S1;. 4'b0001: next_state = S2;. default: next_state = S
(還有261個字)
內容預覽:
// module decoder. input clk;. input reset;. input [7:0] inData;. output [15:0] outData;. reg [3:0] state;. reg [3:0] next_state;. // sequential logic
(還有868個字)
首頁
上一頁
1
下一頁
尾頁