gt.vhd

来自「last cordic for immplemantaion of cordic」· VHDL 代码 · 共 24 行

VHD
24
字号
 -- Description : single bit generate and propigate signals for CLA

library IEEE;
library work;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
use work.all;

entity gt is port (
 x : in std_logic;
 y : in std_logic;
 g : out std_logic;
 t : out std_logic);
end gt;

architecture behavioral of gt is

begin

 g <= (x and y);

 t <= (x or y) ;
end behavioral;

⌨️ 快捷键说明

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