Add: working puts implementation

This commit is contained in:
xamidev
2024-05-19 15:00:55 +02:00
parent 5cd61cf95c
commit 8d33440ced
7 changed files with 128 additions and 68 deletions

View File

@@ -9,8 +9,10 @@
#define FB_HIGH_BYTE_CMD 14
#define FB_LOW_BYTE_CMD 15
void move_cursor(unsigned short pos);
void putchar(unsigned int i, char c, unsigned char fg, unsigned char bg);
void write(char *buf);
void move_cursor(int x, int y);
void putchar(int x, int y, char c);
void puts(const char* str);
void clear(void);
void putcolor(int x, int y, int color);
#endif