上一页 1 ··· 31 32 33 34 35
摘要: 双向端口的VHDL程序如下:library ieee;use ieee.std_logic_1164.all;entity in_out isport(en :in std_logic; data :in std_logic; q :inout std_logic; result:out std_logic );end in_out;architecture behave of in_out isbegin process(en,data,q) begin if (en = '1') then q <= data; ... 阅读全文
posted @ 2013-05-18 22:42 amanlikethis 阅读(267) 评论(0) 推荐(0)
上一页 1 ··· 31 32 33 34 35