📄 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 + -