|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
×
下图中,T_GFSK_DATA一直是高阻态,为什么当t_gfsk_sel =‘0’时,T_GFSK不是高阻呢?
代码:
entity GGH is
port (
T_GFSK_DATA : in std_logic;
t_gfsk_sel : in std_logic;
T_GFSK : out std_logic
);
end GGH;
architecture maintest of GGH is
begin
with t_gfsk_sel select
T_GFSK<=T_GFSK_DATA when '0',
'1' when '1',
'Z' when others;
end architecture;
仿真结果:file:///D:/1.jpg |
|