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