diff options
Diffstat (limited to 'macway/matrix.h')
| -rw-r--r-- | macway/matrix.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/macway/matrix.h b/macway/matrix.h new file mode 100644 index 000000000..c11f1f3e2 --- /dev/null +++ b/macway/matrix.h | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | #ifndef MATRIX_H | ||
| 2 | #define MATRIX_H 1 | ||
| 3 | |||
| 4 | #include <stdint.h> | ||
| 5 | #include "matrix_skel.h" | ||
| 6 | |||
| 7 | |||
| 8 | #define MATRIX_ROWS 9 | ||
| 9 | #define MATRIX_COLS 8 | ||
| 10 | |||
| 11 | |||
| 12 | extern uint8_t *matrix; | ||
| 13 | extern uint8_t *matrix_prev; | ||
| 14 | |||
| 15 | #endif | ||
