1 /* 2 * Copyright (c) 2012-2014 Wind River Systems, Inc. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr.h> 8 #include <sys/printk.h> 9 function_in_sram(int32_t value)10void function_in_sram(int32_t value) 11 { 12 printk("Address of function_in_sram %p\n", &function_in_sram); 13 printk("Hello World! %s\n", CONFIG_BOARD); 14 } 15