1
0
Fork 0

moved folder, update readme

This commit is contained in:
SethSenpai 2016-10-03 08:59:50 +00:00
parent c0c0c579ff
commit 468e855207
6 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,14 @@
#include "gamenum.h"
void matrix_init_kb(void) {
// put your keyboard start-up code here
// runs once when the firmware starts up
DDRC |= (1<<6);
PORTC &= ~(1<<6);
DDRD |= (1<<4);
PORTD &= ~(1<<4);
matrix_init_user();
}