Kernel version 0.8 : Docs...

This commit is contained in:
Rémy GIBERT 2016-10-28 11:48:03 +02:00
parent ce34b41f47
commit 9f2882e375

View File

@ -52,19 +52,21 @@ Prints C-Style String
+ %N : pull 1 byte to Print high Nibble HEX + %N : pull 1 byte to Print high Nibble HEX
+ %s : pull 2 bytes ptr to C-Style String + %s : pull 2 bytes ptr to C-Style String
+ %S : pull 2 bytes ptr to P-Style String + %S : pull 2 bytes ptr to P-Style String
+ \e Print 'ESC' ($1B,27) + \e : Print 'ESC' ($1B,27)
+ \n Print CR=13 + \n : Print CR=13
+ \\ Print \ + \\ : Print \
+ \% Print % + \% : Print %
+ Modifiers for len and padding : + Modifiers for len and padding :
+ %d '9' '12' + %d : '9' '12'
+ %2d ' 9' '12' + %2d : ' 9' '12'
+ %02d '09' '12' + %02d : '09' '12'
+ %11s 'ABCDEFGH ' + %11s : 'ABCDEFGH '
+ %011s 'ABCDEFGH000' + %011s : 'ABCDEFGH000'
+ %2f '3.14' + %2f : '3.14'
##Out: ##Out:
+ CC : success
+ CS : I/O error from COut
#GetDevByIDA #GetDevByIDA