1 /* 2 * Copyright (c) 2018 Travis Geiselbrecht 3 * 4 * Use of this source code is governed by a MIT-style 5 * license that can be found in the LICENSE file or at 6 * https://opensource.org/licenses/MIT 7 */ 8 #pragma once 9 10 #include <stdbool.h> 11 12 void uart_init(void); 13 14 void pic_early_init(void); 15 void pic_init(void); 16 void goldfish_rtc_early_init(void); 17 void goldfish_rtc_init(void); 18 void goldfish_tty_early_init(void); 19 void goldfish_tty_init(void); 20