ior2.vhd
来自「8位的加法器设计」· VHDL 代码 · 共 9 行
VHD
9 行
entity ior2 is
port(x,y:in bit;
z:out bit);
end ior2;
architecture ex2 of ior2 is
begin
z<=x or y;
end ex2;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?