2020-07-01 06:13:03 +10:00
|
|
|
/*
|
2020-09-10 13:57:44 +10:00
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
2020-07-01 06:13:03 +10:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
2020-06-30 14:31:09 +10:00
|
|
|
#include <linker/linker-defs.h>
|
|
|
|
|
|
|
|
__event_type_start = .; \
|
|
|
|
KEEP(*(".event_type")); \
|
|
|
|
__event_type_end = .; \
|
|
|
|
|
|
|
|
__event_subscriptions_start = .; \
|
|
|
|
KEEP(*(".event_subscription")); \
|
|
|
|
__event_subscriptions_end = .; \
|
|
|
|
|