aboutsummaryrefslogtreecommitdiff
path: root/keyboards/handwired/gamenum/gamenum.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/gamenum/gamenum.c')
-rw-r--r--keyboards/handwired/gamenum/gamenum.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/keyboards/handwired/gamenum/gamenum.c b/keyboards/handwired/gamenum/gamenum.c
new file mode 100644
index 000000000..8048194bb
--- /dev/null
+++ b/keyboards/handwired/gamenum/gamenum.c
@@ -0,0 +1,14 @@
1#include "gamenum.h"
2
3void matrix_init_kb(void) {
4 // put your keyboard start-up code here
5 // runs once when the firmware starts up
6 DDRC |= (1<<6);
7 PORTC &= ~(1<<6);
8
9 DDRD |= (1<<4);
10 PORTD &= ~(1<<4);
11
12 matrix_init_user();
13
14}