?? latch.vhd
字號:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity latch is
port(d,clk: in bit;
q,qb: out bit);
end latch;
architecture latch_guard of latch is
begin
g1:
block (clk='1')
begin
q<=guarded d after 5 ns;
qb<=guarded not(d) after 7 ns;
end block g1;
end latch_guard;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -