?? orn.vhd.txt
字號:
----------------------------------------------------------------------------------- Universitaet Heidelberg-- Kirchhoff-Institut fuer Physik-- Lehrstuhl fuer Technische Informatik---- Filename: orn.vhd-- Author: Jan de Cuveland-- Description: Logic Gate: Q = A OR NOT B-- Comment: ---- Version history:--------------------------------------------------------------------------------- Version | Author | Date | Modification---------------------------------------------------------------------------------------------------------------------------------------------------------------- 1.0 | de Cuveland | 28.09.00 | created-------------------------------------------------------------------------------LIBRARY IEEE;USE IEEE.std_logic_1164.ALL; USE IEEE.std_logic_signed.ALL;--------------------------------------------------------------------------------- ENTITY-------------------------------------------------------------------------------entity orn is port ( A, B : in std_logic; Q : out std_logic );end orn;--------------------------------------------------------------------------------- ARCHITECTURE-------------------------------------------------------------------------------architecture behavioral of orn isbeginQ <= A or not B;end behavioral;--------------------------------------------------------------------------------- CONFIGURATION--------------------------------------------------------------------------------- synopsys translate_offconfiguration orn_CFG of orn is for behavioral end for;end orn_CFG;-- synopsys translate_on
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -