library ieee; use ieee.std_logic_1164.all; entity dff11 is port (q : out std_logic_vector(7 downto 0); d : std_logic_vector(7 downto 0); clk : std_logic); end dff11; architecture behav of dff11 is begin process begin wait until rising_edge (clk); q <= d; end process; end behav; t' href='git://git.panaceas.org/avr/qmk/firmware' title='avr/qmk/firmware Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/preonic/preonic.c
blob: 637a73ab8b1a554b9e4644f5ed02cd34857cab17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21