four_banger.h 157 B

1234567891011121314
  1. #ifndef KB_H
  2. #define KB_H
  3. #include "quantum.h"
  4. #define LAYOUT_ortho_2x2( \
  5. K00, K01, \
  6. K10, K11 \
  7. ) { \
  8. { K00, K01 }, \
  9. { K10, K11 } \
  10. }
  11. #endif