⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adder_full.vhd

📁 vhdl codes for combinational and sequential circuit
💻 VHD
字号:
library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_arith.all;use ieee.std_logic_unsigned.all;entity f_add is port(     a,b,c:in std_logic;     o,co:out std_logic);end f_add;architecture bhv of f_add is begino<=a xor b xor c;co<=(a and b)or(b and c)or(c and a);end bhv;     

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -