Add keyboard, create folder, rename folder/file

This commit is contained in:
suchmememanyskill
2020-12-29 16:51:47 +01:00
parent 2302e6111a
commit dfc02f9f81
11 changed files with 307 additions and 9 deletions

View File

@@ -486,6 +486,12 @@ void gfx_printf(const char *fmt, ...)
va_end(ap);
}
void gfx_putc_small(char c){
gfx_con.fntsz = 8;
gfx_putc(c);
gfx_con.fntsz = 16;
}
void gfx_hexdump(u32 base, const u8 *buf, u32 len)
{
if (gfx_con.mute)