This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
252 B
C
Raw Normal View History

#ifndef PUCK_H
#define PUCK_H
#include "quantum.h"
#define LAYOUT( \
K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B \
) { \
{ K00, K01, K02 }, \
{ K03, K04, K05 }, \
{ K06, K07, K08 }, \
{ K09, K0A, K0B }, \
}
#endif