15 lines
260 B
C++
15 lines
260 B
C++
|
#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
|