changeset 1043:938ec7bd301f

Now there's a 6809 and 6309 version
author boisy
date Sun, 16 Mar 2003 13:52:31 +0000
parents 2d921c58224a
children 66e53c0a3eea
files 3rdparty/fmgrs/msf/defsfile 3rdparty/fmgrs/msf/makefile 3rdparty/fmgrs/msf/msf.asm 3rdparty/fmgrs/msf/msfdesc.asm
diffstat 4 files changed, 45 insertions(+), 45 deletions(-) [+]
line wrap: on
line diff
--- a/3rdparty/fmgrs/msf/defsfile	Wed Mar 12 16:44:05 2003 +0000
+++ b/3rdparty/fmgrs/msf/defsfile	Sun Mar 16 13:52:31 2003 +0000
@@ -1,6 +1,6 @@
-H6309 equ 1
-Level equ 2
- use os9defs
- use systype
- use rbfdefs
- use msfdefs
+Level equ 2
+
+ use os9defs
+ use systype
+ use rbfdefs
+ use msfdefs
--- a/3rdparty/fmgrs/msf/makefile	Wed Mar 12 16:44:05 2003 +0000
+++ b/3rdparty/fmgrs/msf/makefile	Sun Mar 16 13:52:31 2003 +0000
@@ -5,11 +5,18 @@
 
 DEPENDS		= ./Makefile
 
-FMGRS		= msf.mn m0_40d.dd
-ALLOBJS		= $(FMGRS)
+FMGRS		= msf_6309.mn msf_6809.mn
+DESCS		= m0_40d.dd
+ALLOBJS		= $(FMGRS) $(DESCS)
 
 all:	$(ALLOBJS) $(DEPENDS)
 
 clean:
 	$(RM) $(ALLOBJS)
 
+msf_6309.mn: msf.asm
+	$(AS) $(AFLAGS) $< $(ASOUT)$@ -e -aH6309=1
+
+msf_6809.mn: msf.asm
+	$(AS) $(AFLAGS) $< $(ASOUT)$@
+
Binary file 3rdparty/fmgrs/msf/msf.asm has changed
--- a/3rdparty/fmgrs/msf/msfdesc.asm	Wed Mar 12 16:44:05 2003 +0000
+++ b/3rdparty/fmgrs/msf/msfdesc.asm	Sun Mar 16 13:52:31 2003 +0000
@@ -1,46 +1,39 @@
-
- ifp1
-
-Level set 2
-  use os9defs
-*  useos9sysdefs
-*  useos9iodefs
-  use rbfdefs
-  use msfdefs
-
- endc
+         IFP1            
+Level    set   2         
+         use   os9defs   
+         use   rbfdefs   
+         use   msfdefs   
+         ENDC            
 
 **************************************************************
 * Device Descriptors for MSDos drives
 *
 
- mod lenB,namB,DEVIC+OBJCT,REENT+1,mgrB,dvrB
+         mod   lenB,namB,DEVIC+OBJCT,REENT+1,mgrB,dvrB
 
- fcb $ff all modes
- fcb 7 extended port address
- fdb $ff40 port address
- fcb optB-*-1 option table size
- fcb DT.RBF this is a RBF device
- fcb dnum this is drive dnum to the controller
- fcb 3 step rate
- fcb %01000000+MSDOS. non standard type
- fcb density
- fdb tracks
- fcb sides
- fcb 1 verify
-optB equ *
+         fcb   $ff        all modes
+         fcb   7          extended port address
+         fdb   $ff40      port address
+         fcb   optB-*-1   option table size
+         fcb   DT.RBF     this is a RBF device
+         fcb   dnum       this is drive dnum to the controller
+         fcb   3          step rate
+         fcb   %01000000+MSDOS. non standard type
+         fcb   density   
+         fdb   tracks    
+         fcb   sides     
+         fcb   1          verify
+optB     equ   *         
 
- ifeq density&%100 ..not hi density
-namB fcb dnam,dnum+48+%10000000 device name
- else
-namB fcb dnam,'H,dnum+48+%10000000 add H to device name
- endc
+         IFEQ  density&%100 ..not hi density
+namB     fcb   dnam,dnum+48+%10000000 device name
+         ELSE            
+namB     fcb   dnam,'H,dnum+48+%10000000 add H to device name
+         ENDC            
 
-mgrB fcs /MSF/
-dvrB fcs /SDISK3/
+mgrB     fcs   /MSF/     
+dvrB     fcs   /SDISK3/  
 
- emod
-
-lenB equ *
-
- end
+         emod            
+lenB     equ   *         
+         end