正文

VHDL 语言实现inout类型的使用2007-06-19 00:31:00

【评论】 【打印】 【字体: 】 本文链接:http://blog.pfan.cn/vfdff/26886.html

分享到:

-- 三态要有一个控制信号来控制,初始应为高阻。VHDL与Verilog应差不多吧,如下VHDL可参考一下: VHDL: Bidirectional Busdownload from: http://www.fpga.com.cn bidir.vhd (Tri-state bus implementation) LIBRARY ieee;USE ieee.std_logic_1164.ALL; ENTITY bidir IS    PORT(        bidir   : INOUT STD_LOGIC_VECTOR (7 DOWNTO 0);        oe, clk : IN STD_LOGIC;        inp     : IN STD_LOGIC_VECTOR (7 DOWNTO 0);        outp    : OUT STD_LOGIC_VECTOR (7 DOWNTO 0));END bidir; ARCHITECTURE cpld OF bidir ISSIGNAL  a  : STD_LOGIC_VECTOR (7 DOWNTO 0);  -- DFF that stores                                              -- value from input.SIGNAL  b  : STD_LOGIC_VECTOR (7 DOWNTO 0);  -- DFF that stores BEGIN                                        -- feedback value.    PROCESS(clk)    BEGIN    IF clk = '1' AND clk'EVENT THEN  -- Creates the flipflops        a <= inp;                            outp <= b;                          END IF;    END PROCESS;        PROCESS (oe, bidir)          -- Behavioral representation         BEGIN                    -- of tri-states.        IF( oe = '0') THEN            bidir <= "ZZZZZZZZ";            b <= bidir;        ELSE            bidir <= a;             b <= bidir;        END IF;    END PROCESS;END cpld;

阅读(7120) | 评论(0)


版权声明:编程爱好者网站为此博客服务提供商,如本文牵涉到版权问题,编程爱好者网站不承担相关责任,如有版权问题请直接与本文作者联系解决。谢谢!

评论

暂无评论
您需要登录后才能评论,请 登录 或者 注册