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.

18 lines
239 B
C
Raw Normal View History

#ifndef NINEKEY_H
#define NINEKEY_H
#include "quantum.h"
#define LAYOUT( \
k00, k01, k02, \
k10, k11, k12, \
k20, k21, k22 \
) \
{ \
{ k00, k01, k02 }, \
{ k10, k11, k12 }, \
{ k20, k21, k22 } \
}
#endif