blob: ea16950c62d932f385eb0b4031ec5706ad90ed17 [file] [log] [blame]
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright (c) 2019 Intel Corp.
*/
#include <zephyr/zephyr.h>
#include "info.h"
__weak void multiboot(void)
{
printk("MULTIBOOT: Not supported in this build.\n\n");
}
__weak void memmap(void)
{
printk("MEMMAP: Not supported in this build.\n\n");
}
__weak void acpi(void)
{
printk("ACPI: Not supported in this build.\n\n");
}
void main(void)
{
printk("\n\ninfo: the Zephyr x86 platform information tool\n\n");
multiboot();
memmap();
acpi();
timer();
printk("info: complete\n");
}