📄 or.vhd
字号:
entity g_or is generic(width : positive); port(a,b : in bit_vector(width-1 downto 0); y: out bit_vector(width-1 downto 0));end g_or;architecture structure of g_or isbeginy<=a or b;end;entity bit_or is port(a,b : in bit; y: out bit);end bit_or;architecture structure of bit_or isbeginy<= a or b;end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -