removed pdclib, strange things were happening..., user shell kinda works now

This commit is contained in:
2026-07-06 22:13:57 -05:00
parent 7d76f0ec73
commit 6d7a23d747
308 changed files with 829 additions and 41231 deletions

View File

@@ -80,6 +80,11 @@ void kprintf(const char* fmt, ...) {
kputx(x);
break;
}
case 'c': {
int c = va_arg(args, int);
vga_putchar((char)c);
break;
}
case '%':
vga_putchar('%');
break;