14 lines
175 B
C
14 lines
175 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
#include "quantum.h"
|
|
|
|
#define LAYOUT( \
|
|
K00, K01, \
|
|
K10, K11 \
|
|
) { \
|
|
{ K00, K01 }, \
|
|
{ K10, K11 } \
|
|
}
|