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.

15 lines
244 B

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