?? tendiv4.v
字號(hào):
module TenDiv4(BCDout,Clr,Clock);
input Clock;
input Clr;
output [3:0]BCDout;
reg [3:0] BCDout;
always @(negedge Clock or negedge Clr)
if(!Clr)
BCDout <= 0;
else if( ________________ )
_____________;
else
_____________ ;
endmodule
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -