diff options
author | tmk <nobody@nowhere> | 2010-10-27 20:51:45 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2010-10-27 22:56:01 +0900 |
commit | 2f80e790c6310ad24a4cb3d4a72c31314364fef7 (patch) | |
tree | aad001abdb61ff736e580f98184ab7cd9e870648 /macway/matrix.h | |
parent | 461e0d3d8c82cc78d29d3115af3c417bb51bb50f (diff) |
new build method for macway
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 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 |