summaryrefslogtreecommitdiff
path: root/macway/matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'macway/matrix.h')
-rw-r--r--macway/matrix.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/macway/matrix.h b/macway/matrix.h
new file mode 100644
index 0000000000..c11f1f3e2d
--- /dev/null
+++ b/macway/matrix.h
@@ -0,0 +1,15 @@
+#ifndef MATRIX_H
+#define MATRIX_H 1
+
+#include <stdint.h>
+#include "matrix_skel.h"
+
+
+#define MATRIX_ROWS 9
+#define MATRIX_COLS 8
+
+
+extern uint8_t *matrix;
+extern uint8_t *matrix_prev;
+
+#endif