old-MTGos-old/kernel/hal/x86/include/base.hpp

15 lines
260 B
C++
Raw Normal View History

#ifndef _BASE_HPP
#define _BASE_HPP
#include <stdint.h>
namespace MTGosHAL {
class Output;
class Serial;
class Screen;
enum class BG_color: uint16_t;
enum class FG_color: uint16_t;
extern Serial* debug;
extern Screen* out;
extern Screen* err;
}
#endif