aboutsummaryrefslogtreecommitdiffstats
path: root/lib/lufa/Projects/XPLAINBridge/XPLAINBridge.c
diff options
context:
space:
mode:
authorpremek <premysl.vyhnal@gmail.com>2016-08-16 00:44:58 +0200
committerpremek <premysl.vyhnal@gmail.com>2016-08-16 00:44:58 +0200
commit5abb05ca402a3ffbce1d4a0a7e3e4eba1ebc9d1b (patch)
tree663ad51b41ff670aa1af4936a5fcb5fdf0df2fcf /lib/lufa/Projects/XPLAINBridge/XPLAINBridge.c
parent93f366fa7d59d0a3abb03879da88082a1e2128a8 (diff)
downloadfirmware-5abb05ca402a3ffbce1d4a0a7e3e4eba1ebc9d1b.tar.gz
firmware-5abb05ca402a3ffbce1d4a0a7e3e4eba1ebc9d1b.tar.bz2
firmware-5abb05ca402a3ffbce1d4a0a7e3e4eba1ebc9d1b.zip
premek split layout
Diffstat (limited to 'lib/lufa/Projects/XPLAINBridge/XPLAINBridge.c')
0 files changed, 0 insertions, 0 deletions
ont-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
library ieee;
use ieee.std_logic_1164.all;

entity dff06 is
  port (q : out std_logic;
        d : std_logic;
        en1 : std_logic;
        en2 : std_logic;
        clk : std_logic);
end dff06;

architecture behav of dff06 is
begin
  process (clk) is
  begin
    if (en2 = '1' and en1 = '1') and rising_edge (clk) then
      q <= d;
    end if;
  end process;
end behav;