annotate defs/ioman.d @ 1919:028161cd3535

uses ss.fd
author boisy
date Fri, 25 Nov 2005 12:39:54 +0000
parents 27e85b681dab
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1760
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
2 ; io.d - I/O Service Request Code Definitions
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
3 ;
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
4 ; $Id$
1756
a4f606d2f66e Updated for new as6809
boisy
parents: 1626
diff changeset
5 ;
1760
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
6 ; Edt/Rev YYYY/MM/DD Modified by
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
7 ; Comment
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
8 ; ------------------------------------------------------------------
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
9 ; 2004/07/02 Boisy G. Pitre
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
10 ; Created.
1756
a4f606d2f66e Updated for new as6809
boisy
parents: 1626
diff changeset
11
a4f606d2f66e Updated for new as6809
boisy
parents: 1626
diff changeset
12 I$Attach == 0h80 ; Attach I/O Device
1760
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
13 I$Detach == 0h81 ; Detach I/O Device
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
14 I$Dup == 0h82 ; Duplicate Path
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
15 I$Create == 0h83 ; Create New File
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
16 I$Open == 0h84 ; Open Existing File
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
17 I$MakDir == 0h85 ; Make Directory File
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
18 I$ChgDir == 0h86 ; Change Default Directory
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
19 I$Delete == 0h87 ; Delete File
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
20 I$Seek == 0h88 ; Change Current Position
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
21 I$Read == 0h89 ; Read Data
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
22 I$Write == 0h8A ; Write Data
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
23 I$ReadLn == 0h8B ; Read Line of ASCII Data
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
24 I$WritLn == 0h8C ; Write Line of ASCII Data
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
25 I$GetStt == 0h8D ; Get Path Status
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
26 I$SetStt == 0h8E ; Set Path Status
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
27 I$Close == 0h8F ; Close Path
27e85b681dab Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents: 1756
diff changeset
28 I$DeletX == 0h90 ; Delete from current exec dir