changeset 2434:eab6b9e18832

update defs for RFM
author aaronwolfe
date Sun, 21 Feb 2010 06:24:47 +0000
parents 11056072a809
children f3f09398780b
files defs/dwdefs.d defs/os9defs defs/rfmdefs
diffstat 3 files changed, 27 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/defs/dwdefs.d	Fri Feb 12 22:51:23 2010 +0000
+++ b/defs/dwdefs.d	Sun Feb 21 06:24:47 2010 +0000
@@ -46,6 +46,9 @@
 OP_SERGETSTAT equ 'D
 OP_SERSETSTAT equ 'D+128
 
+* for dw vfm
+OP_VFM equ 'V+128
+
 * WireBug opcodes (Server-initiated)
 OP_WIREBUG_MODE  equ   'B
 * WireBug opcodes (Server-initiated)
--- a/defs/os9defs	Fri Feb 12 22:51:23 2010 +0000
+++ b/defs/os9defs	Sun Feb 21 06:24:47 2010 +0000
@@ -792,7 +792,7 @@
 DT.SBF         EQU       3                   Sequential Block File Manager
 DT.NFM         EQU       4                   Network File Manager
 DT.CDFM        EQU       5                   CD-ROM File Manager
-
+DT.RFM			EQU		6					Remote File Manager
 
 *********************
 * CRC Result Constant
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/defs/rfmdefs	Sun Feb 21 06:24:47 2010 +0000
@@ -0,0 +1,23 @@
+********************************************************************
+* RFMDefs - Remote File Manager Definitions
+*
+*          2010/02/20  AAW
+* initial version
+
+               NAM       RFMDefs
+               TTL       Remote File Manager Definitions
+
+DW.create  EQU $01
+DW.open EQU $02
+DW.makdir EQU $03
+DW.chgdir EQU $04
+DW.delete EQU $05
+DW.seek EQU $06
+DW.read EQU $07
+DW.write EQU $08
+DW.readln EQU $09
+DW.writln EQU $0A
+DW.getstt EQU $0B
+DW.setstt EQU $0C
+DW.close EQU $0D
+