module BUF(A, Y); input A; output Y = A; endmodule module NOT(A, Y); input A; output Y = ~A; endmodule module NAND(A, B, Y); input A, B; output Y = ~(A & B); endmodule module NOR(A, B, Y); input A, B; output Y = ~(A | B); endmodule module DFF(C, D, Q); input C, D; output reg Q; always @(posedge C) Q <= D; endmodule module DFFSR(C, D, Q, S, R); input C, D, S, R; output reg Q; always @(posedge C, posedge S, posedge R) if (S) Q <= 1'b1; else if (R) Q <= 1'b0; else Q <= D; endmodule naceas.org/git/avr/qmk/firmware' title='avr/qmk/firmware Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/pegasushoof/keymaps/citadel/config.h
blob: e8eafe2e172da2c2cfb7af726e78731987fa58b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14