ex_p2_19_adder.vhd
来自「This is the course for VHDL programming」· VHDL 代码 · 共 8 行
VHD
8 行
entity ADDER is port (A,B: in integer; C: out integer);end ADDER;architecture A1 of ADDER isbegin C <= A+B;end A1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?