Files
lk/platform/qemu-virt-m68k/platform_p.h
Travis Geiselbrecht 12fee4b59a [arch][m68k] initial port to m68k
Uses the QEMU virt machine for 68k defined in qemu 6.0+.
Basic support that boots, prints to the console, takes input from
console, and context switches.

TODO: interrupt support, timer support.
2021-06-06 19:38:45 -07:00

20 lines
439 B
C

/*
* Copyright (c) 2018 Travis Geiselbrecht
*
* 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
*/
#pragma once
#include <stdbool.h>
void uart_init(void);
void pic_early_init(void);
void pic_init(void);
void goldfish_rtc_early_init(void);
void goldfish_rtc_init(void);
void goldfish_tty_early_init(void);
void goldfish_tty_init(void);