Luna/kernel/include/io/Serial.h

13 lines
278 B
C
Raw Normal View History

2022-09-05 14:13:51 +00:00
#pragma once
#include "render/Color.h"
#include <stddef.h>
namespace Serial
{
void wait();
void write(const char* string, size_t size);
void print(const char* string);
void println(const char* string);
void set_color(Color& color);
void reset_color();
}