/* * Copyright (c) 2022 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include extern void reloc(void); int main(void) { printk("%s location: %p\n", __func__, main); printk("Calling relocated code\n"); reloc(); return 0; }