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

View File

@ -35,3 +35,9 @@ uint64_t int_pow(uint64_t base, uint32_t exp)
return result;
}
int abs(int x)
{
return (x < 0) ? -x : x;
}