?? gateinst.v
字號:
// MAX+plus II Verilog Example
// Gate Instantiation Statement
// Copyright (c) 1997 Altera Corporation
module gateinst (a, b, c, d, x, y);
input a, b, c, d;
output x, y;
and and1 (x, a, b, c);
not not1 (y, d);
endmodule
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -