blob: 78d00bb7dec7a64de32af8d16fb5942a4c764be0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
#include <linker/linker-defs.h>
__event_type_start = .; \
KEEP(*(".event_type")); \
__event_type_end = .; \
__event_subscriptions_start = .; \
KEEP(*(".event_subscription")); \
__event_subscriptions_end = .; \
|