blob: 3ec68b419864e4b5252446709880f380175e6d3d [file] [log] [blame]
// Copyright 2023 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#ifndef ZIRCON_KERNEL_PHYS_PHYSBOOT_H_
#define ZIRCON_KERNEL_PHYS_PHYSBOOT_H_
#include <phys/uart.h>
class PhysBootTimes;
class KernelStorage;
extern PhysBootTimes gBootTimes;
[[noreturn]] void BootZircon(UartDriver& uart, KernelStorage kernel_storage);
#endif // ZIRCON_KERNEL_PHYS_PHYSBOOT_H_