Kernel version 0.8 : Docs...

This commit is contained in:
Rémy GIBERT 2016-11-01 15:37:28 +01:00
parent 627ba98812
commit 84efe1b604
3 changed files with 19 additions and 12 deletions

View File

@ -60,7 +60,6 @@ In Progress : moving TCPIP to socket API
| PAUSE | Working | | | PAUSE | Working | |
| READ | | | | READ | | |
| TIME | Working | | | TIME | Working | |
| TYPE | Working | |
| SET | Working | | | SET | Working | |
| STARTPROC | Working | Used in A2osX.startup | | STARTPROC | Working | Used in A2osX.startup |
@ -109,7 +108,7 @@ note : '$VAR' does NOT expand Variable
| MV | In Progress | -C : Continue On Error | 0.8 | | MV | In Progress | -C : Continue On Error | 0.8 |
| | | -R : Recurse subdirectories | | | | | -R : Recurse subdirectories | |
| | | -Y : Dont't Prompt For Override | | | | | -Y : Dont't Prompt For Override | |
| CAT | In Progress | -A : Show All non printable caracters | 0.8 | | CAT | Working | -A : Show All non printable caracters | 0.8 |
| | | -N : Number all output lines | | | | | -N : Number all output lines | |
| | | -S : Suppress repeated empty output lines | | | | | -S : Suppress repeated empty output lines | |
| ARP | Working | dump ARP cache, setup a static ARP entry | 0.8 | | ARP | Working | dump ARP cache, setup a static ARP entry | 0.8 |

View File

@ -6,12 +6,16 @@ AUTO 6
.LIST OFF .LIST OFF
*/-------------------------------------- */--------------------------------------
* #FileSearch * #FileSearch
* Search a file in the provided PATH list
* And return, if found, the full path to it.
* ##In: * ##In:
* PUSHW = Ptr to Search Path (PSTR) %LIB%;/SYS/SLIB * PUSHW = Ptr to Search Path (PSTR) %LIB%;/SYS/SLIB
* PUSHW = Ptr to File Name (PSTR) * PUSHW = Ptr to File Name (PSTR)
* #Out: * ##Out:
* Y,A = PSTR to FilePath (PSTR) * CC : success
* X = hMem to FilePath * Y,A = PSTR to FilePath (PSTR)
* X = hMem to FilePath
* CS : not found
*\-------------------------------------- *\--------------------------------------
K.FileSearch >PULLW ZPQuickPtr4 ZPQuickPtr1 trashed by ExpandPStrYA K.FileSearch >PULLW ZPQuickPtr4 ZPQuickPtr1 trashed by ExpandPStrYA
>PULLYA Get Search list >PULLYA Get Search list
@ -78,9 +82,11 @@ K.FileSearch.Index .BS 1
* #GetFullPathYA * #GetFullPathYA
* ##In : * ##In :
* Y,A = Filename (PSTR) * Y,A = Filename (PSTR)
* #Out : * ##Out :
* Y,A = FullPath (PSTR) * CC : success
* X = hMem of FullPath * Y,A = FullPath (PSTR)
* X = hMem of FullPath
* CS : A = Error Code
*\-------------------------------------- *\--------------------------------------
K.GetFullPathYA >STYA ZPQuickPtr3 Ptr1 & 2 used by StrCpy K.GetFullPathYA >STYA ZPQuickPtr3 Ptr1 & 2 used by StrCpy
lda (ZPQuickPtr3) lda (ZPQuickPtr3)

View File

@ -290,16 +290,18 @@ And return, if found, the full path to it.
+ CC : success + CC : success
+ Y,A = PSTR to FilePath (PSTR) + Y,A = PSTR to FilePath (PSTR)
+ X = hMem to FilePath + X = hMem to FilePath
+ CS : A = Error Code + CS : not found
#GetFullPathYA #GetFullPathYA
##In : ##In :
+ Y,A = Filename (PSTR) + Y,A = Filename (PSTR)
#Out : ##Out :
+ Y,A = FullPath (PSTR) + CC : success
+ X = hMem of FullPath + Y,A = FullPath (PSTR)
+ X = hMem of FullPath
+ CS : A = Error Code
#LoadFile #LoadFile