diff --git a/src/console.asm b/src/console.asm index cabb2ea..fe41669 100644 --- a/src/console.asm +++ b/src/console.asm @@ -70,8 +70,8 @@ puts: ; %b Unsigned integer, printed as binary number ; %o Unsigned integer, printed as octal number ; %s String -; %N* Pad left, N chars (maximum 64). Supported *: d, i, u, x, X, b -; *0N* Pad left with zeroes, N chars (maximum 64). Supported *: d, i, u, x, X, b +; %N* Pad left, N chars (maximum 64). Supported specifiers: d, i, u, x, X, b, o +; *0N* Pad left with zeroes, N chars (maximum 64). Supported specifiers: d, i, u, x, X, b, o ; Unsupported specifiers are printed as-is ; For all specifiers (except %%) an argument is expected. Mismatch between arguments given and specifiers provided will lead to issues ;