0.0.2d: Added BGA support, graphics!

This commit is contained in:
2026-06-05 16:14:14 -05:00
parent 5971218b56
commit f3b2f95af5
40 changed files with 1007 additions and 1197 deletions

Binary file not shown.

View File

@ -28,7 +28,8 @@ int main(void)
{
writestring("command: ");
char* istr;
char istr[128];
memset(istr, 0, sizeof(istr));
int rv = getstring(istr);
@ -38,7 +39,7 @@ int main(void)
break;
}
if (rv != 0)
if (rv < 0)
{
writestring("\nERROR: getstring did not return 0\n");
break;
@ -54,6 +55,10 @@ int main(void)
writestring("you entered: ");
writestring(istr);
writestring("len: ");
print_uint((uint32_t) len);
writestring("\nfirst char: ");
writechar(*istr);
writestring(" ASCII -> ");