Update KERNEL.md

This commit is contained in:
Rémy GIBERT 2016-10-22 22:48:45 +02:00 committed by GitHub
parent b4528c6c8a
commit 3096ad9f07

View File

@ -1,26 +1,26 @@
*** Auto generated by docgen.cmd ***
*** Auto generated by docgen.cmd ***
#FOpen
Open a file
Open a file
##In :
+ PUSHW = AUXTYPE
+ PUSHB = TYPE
+ PUSHB = MODE
+ SYS.FOPEN.R : if R and exists -> ERROR
+ SYS.FOPEN.W : if W and exists -> CREATE
+ SYS.FOPEN.A : Append
+ SYS.FOPEN.T : Open/Append in Text mode
+ SYS.FOPEN.X : Create if not exists
+ PUSHW = AUXTYPE
+ PUSHB = TYPE
+ PUSHB = MODE
+ SYS.FOPEN.R : if R and exists -> ERROR
+ SYS.FOPEN.W : if W and exists -> CREATE
+ SYS.FOPEN.A : Append
+ SYS.FOPEN.T : Open/Append in Text mode
+ SYS.FOPEN.X : Create if not exists
+ PUSHW = PATH (PSTR)
##Out :
+ CC : A = hFILE
##Out :
+ CC : A = hFILE
+ CS : A = EC
#FCloseA
Close a file
##In :
+ A = hFILE
##Out :
#FCloseA
Close a file
##In :
+ A = hFILE
##Out :
#FRead
Read bytes from file
##In :