blob: c61c93d8221a3406e27000d36af934a5e7301ef0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "boucane.hpp"
#define MEMTEXT_BUFFER_SIZE 4096
#define MEMTEXT_ADDR_LOCATION 0x0
void memtext_init();
void memtext_putchar(char c);
void memtext_scrollup(u32 n);
|