11 lines
234 B
C
11 lines
234 B
C
#pragma once
|
|
|
|
#include "quantum.h"
|
|
|
|
#define LAYOUT_h( K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11 ) \
|
|
{ { K00, K01, K02, K03 }, \
|
|
{ K04, K05, K06, K07 }, \
|
|
{ K08, K09, K10, K11 } \
|
|
}
|
|
#define LAYOUT LAYOUT_h
|