You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
239 B

  1. #ifndef NINEKEY_H
  2. #define NINEKEY_H
  3. #include "quantum.h"
  4. #define LAYOUT( \
  5. k00, k01, k02, \
  6. k10, k11, k12, \
  7. k20, k21, k22 \
  8. ) \
  9. { \
  10. { k00, k01, k02 }, \
  11. { k10, k11, k12 }, \
  12. { k20, k21, k22 } \
  13. }
  14. #endif