fixed looping bug in conversion function

This commit is contained in:
Lauchmelder 2022-01-20 16:44:42 +01:00
parent 34b26797a1
commit c6527da081
2 changed files with 2 additions and 1 deletions

View file

@ -63,7 +63,7 @@ char* ltoa(long number, char* string, int base)
*string++ = '-';
}
itoa(number, string, base);
ultoa(number, string, base);
return old_string;
}

View file

@ -12,6 +12,7 @@ void main()
char buffer[1024];
uart_init();
print_clippy();
uart_puts("Boot successful! \n");
uart_puts("Started execution at 0x");