added more clippy
This commit is contained in:
parent
67acfc7140
commit
95d24b96bc
10
src/kernel.c
10
src/kernel.c
|
@ -28,7 +28,15 @@ void main()
|
|||
|
||||
uart_puts("\nPlease enter second operand\n");
|
||||
uart_puts("📎> ");
|
||||
int b = stoi(uart_gets(buffer));
|
||||
uart_gets(buffer);
|
||||
|
||||
if(buffer == "clippy")
|
||||
{
|
||||
print_clippy();
|
||||
continue;
|
||||
}
|
||||
|
||||
int b = stoi(buffer);
|
||||
|
||||
uart_puts("\n");
|
||||
uart_puts(itoa(a, buffer));
|
||||
|
|
Loading…
Reference in a new issue