blob: b5ac0186e3c25e08e921eafc8a8b56f0874aaa35 [file] [log] [blame]
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright (c) 2019 Intel Corp.
*/
#include <zephyr.h>
#include "info.h"
__weak void multiboot(void)
{
printk("MULTIBOOT: 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");
}