?? mux21_5.v
字號(hào):
module mux21_5(address,pcout,aluout,selldst);
output[4:0] address;
input[4:0] pcout,aluout;
input selldst;
reg [4:0] address;
always @(selldst or pcout or aluout)
case(selldst)
1'd0: address=pcout;
1'd1: address=aluout;
endcase
endmodule
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -