/* * Copyright (c) 2023 Intel Corporation. * * SPDX-License-Identifier: Apache-2.0 */ /* * This very simple hello world C code can be used as a test case for building * probably the simplest loadable extension. It requires a single symbol be * linked, section relocation support, and the ability to export and call out to * a function. */ #include #include #include #include static const uint32_t number = 42; void test_entry(void) { printk("hello world\n"); printk("A number is %u\n", number); zassert_equal(number, 42); } EXPORT_SYMBOL(test_entry);