1/*
2 * Copyright 2022, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include <ACPI.h>
8
9extern "C" {
10#include "acpi.h"
11#include "accommon.h"
12}
13
14#include "arch_init.h"
15
16ACPI_PHYSICAL_ADDRESS
17arch_init_find_root_pointer()
18{
19	return 0;
20}
21
22
23void
24arch_init_interrupt_controller()
25{
26	//stub
27}
28