Little update in printf comment (padding now does take num prefix into account)

This commit is contained in:
2025-07-20 23:39:54 +02:00
parent 8c25b7913b
commit d595ba1903
2 changed files with 2 additions and 3 deletions

View File

@@ -64,8 +64,8 @@ section .rodata
; printf()
msgPrintf db NL,"TEST printf()",NL,EOS
printf1 db TAB,"printf(",DQUO,"He%ll%0 there%%%%%!%!%\n",DQUO,"): ",NL,TAB,TAB,EOS
printf1Str db "He%ll%0 there%%%%%!%!%\n",EOS
printf1 db TAB,"printf(",DQUO,"He%ll%0 there%v%%%%!%!%\n",DQUO,"): ",NL,TAB,TAB,EOS
printf1Str db "He%ll%0 there%v%%%%!%!%\n",EOS
printf2 db TAB,"printf(",DQUO,"Are %s doing %s?\n",DQUO,", printf2Str1, printf2Str2): ",NL,TAB,TAB,EOS
printf2Str db "Are %s doing %s?\n",EOS
printf2Str1 db "you",EOS