/*
 * Copyright (c) 2012-2014 Wind River Systems, Inc.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

#include <zephyr.h>
#include <sys/printk.h>

#define IMAGE_VERSION		CONFIG_MCUBOOT_IMAGE_VERSION

void main(void)
{
	printk("Hello World! board: %s image: %s\n", CONFIG_BOARD, IMAGE_VERSION);
}
