home *** CD-ROM | disk | FTP | other *** search
- title Example Runtime Overlay Loader User Module for PLINK86
- subttl Phoenix Software Associates Ltd.
- .sfcond
- ;
- ;
- ;******************************
- ;* Overlay Loader User Module *
- ;******************************
- ;
- ; The overlay loader user support module specifies how the overlay loader
- ;will handle error conditions like "overlay not found". It can print messages,
- ;modify or replace the file name the overlay loader is trying to use, or
- ;terminate the program.
- ; This is a simplified example of how a user support module could be set
- ;up for use with MSDOS 2.0. It modifies all overlay file names by appending a
- ;path name to the front (\SAMPLE\). In other words, all overlay files for the
- ;application are assumed to reside in the \SAMPLE directory. If an error of
- ;some kind occurs a message is printed and the program is terminated.
- ; The standard user support module is in "OVUSER.ASM", and is included
- ;in OVERLAY.LIB. Take a look at that one for some more complicated algorithms
- ;for finding overlay files. You may modify that one, or start with this one
- ;if your requirements are simple. Then just link it in with the rest of the
- ;program, after the other input files. Don't put it in an overlay though!
- ; Modifications should be made with care: Phoenix will probably
- ;be unsympathetic to those who write their own user modules and then expect us
- ;to help with the debugging. However, virtually any modifications needed to
- ;make your application run smoothly may be accomplished by writing a user
- ;support module like this one.
- ; As the program begins execution the $OVLYIU routine is called before
- ;the application program is started. Initialization is performed here (in this
- ;simple example, only minimum initialization is done: $OVDOS2 & $OVOM$ must
- ;be initialized in $OVLYIU.
- ; The overlay loader calls symbol $OVLYxU each time it is about to open a
- ;new overlay file (keep in mind that a file can contain several overlays), or
- ;whenever a fatal error is encountered while reading an overlay. The 'x' is 'M'
- ;for MSDOS programs, and 'C' for CP/M-86 programs. The name of the overlay
- ;file being requested is provided in a string area labled by public symbol
- ;$OVLYFN, and may be modified if desired. The file name must be terminated by
- ;a NUL, and the string area must be at least 13 bytes long. As initialized by
- ;the overlay loader, the file name consists of a name and type only, of maximum
- ;length 8 and 3 chars respectively, separated by a period. In this sample user
- ;module the string "\SAMPLE\" is appended to the front of the file name.
- ; A result code is provided in the AL register describing what happened
- ;during the previous attempt to load an current overlay from the current file:
- ;
- ;0 - The first attempt to load an overlay has not been made yet.
- ;1 - The overlay file was not found.
- ;2 - The overlay file couldn't be opened due to a disk error. These errors
- ; are things like no disk in drive, drive not ready, or media errors such
- ; as seek and CRC problems.
- ;3 - The overlay couldn't be read completely (premature EOF). The file
- ; is probably smashed.
- ;4 - The overlay couldn't be read because of a disk error (drive not ready,
- ; media error, etc).
- ;
- ; After possibly making modifications to the overlay file name, the $OVLYxU
- ;routine must return, in the AL register, a function code instructing the
- ;overlay loader how to handle the next attempt to load the overlay:
- ;
- ;0 - Try to load the overlay from the file whose name given in $OVLYFN.
- ;1 - Give up. The program is normally terminated when this code is received.
- ; However, if the user program called the overlay loader itself (at the
- ; $LOAD$ routine, see Plink86 user manual), an error code may be returned to
- ; the user program at its option.
- ;
- ; This sample module prints a message and terminates the program whenever
- ;an error occurs.
- ;
- name OVUSER ;name of this module
- public $OVLYIU ;entry point to initialize user module
- public $OVLYMU ;entry point for MSDOS user routine
- public $OVLYFN ;overlay file name string for overlay loader to use
- ;fatal messages
- public $roverflow ; overlay loader reload stack overflow
- public $runderflow ; overlay loader reload stack undeflow
- public $rnomemory ; not enough memory for overlay reload stack
- public $needdos2 ; need dos 2.0 i/o capability
- ;
- ;
- ;*******
- ;* Sys *
- ;*******
- ;This is a macro for doing operating system calls.
- ;
- LodOff macro Reg,Var ;;macro to load variable offset into reg
- mov Reg,offset Var ;;MSDOS, offsets are from segment
- endm
- ;
- Sys macro Fun,Arg ;;macro for invoking Operating system functions
- mov AH,Fun
- ifnb <Arg>
- LodOff DX, Arg
- endif
- int 21H
- endm
- ;
- ;********
- ;* Data *
- ;********
- ;The data area must be set up as shown here so that it will combine properly
- ;with the overlay loader's data area. DS and ES always point to this segment
- ;when the overlay loader calls this module.
- ;
- extrn $OVOM$: byte ;open mode for overlay files -
- ; network may be running => shared files
- extrn $OVDOS2: byte ;-1 => MSDOS >= 2.0 running
-
- OVdata segment word public 'OVLOADER'
- ;
- CR equ 0DH
- LF equ 0AH
- ;
- DosVer db 0 ;MSDOS version number.
- FNlen equ 80 ;maximum length of overlay file name
- $OVLYFN db FNlen dup (?) ;overlay file name work area
- PRFlen equ 8 ;length of my path name
- Prefix db "\SAMPLE\" ;my path name for overlay files
- ;my error message
- Err db "Fatal error - can't load overlay",CR,LF,"$"
- $runderflow db "PLINK86 Overlay Loader: stack underflow $"
- $roverflow db "PLINK86 Overlay Loader: stack overflow $"
- $rnomemory db "PLINK86 Overlay Loader: not enough memory for stack $"
- $needdos2 db "PLINK86 Overlay Loader: dos 2.0 required $"
- ;
- ;
- OVdata ends
- ;
- ;********
- ;* Code *
- ;********
- ;The code segment must be set up as shown here so it will combine properly
- ;with the overlay loader's code segment. All calls to this module are near
- ;calls.
- ;
- OVcode segment public 'OVLOADER'
- assume cs:OVcode, ds:OVdata, es:OVdata
- ;
- ;***********
- ;* $OVLYIU *
- ;***********
- ;Initialization routine: $OVDOS2 & $OVOM$ MUST BE INITIALIZED HERE!!
- ;
- $OVLYIU proc near
- Sys 30H ;AL := DOS version #
- mov DosVer, AL ;Save for later.
- cmp AL,2 ;go away if earlier than 2.0
- jnc IU2
- jmp short IUend
- IU2: ;DOS 2.x or later
- mov $OVDOS2, -1 ; -1 => use dos 2.0 file handles
- xor AL, AL ; default to standard file open mode
- mov $OVOM$, AL ; set my open mode
- IUend:
- ret
- $OVLYIU endp
- ;
- ;***********
- ;* $OVLYxU *
- ;***********
- ;If this is the first attempt to load an overlay, append our path name to the
- ;front. Otherwise, print an error message and terminate the program.
- ;
- $OVLYMU proc near
- or AL, AL ;error on last attempt?
- jnz Error
- ;shift file name up by length of prefix.
- mov SI, offset $OVLYFN + FNlen - PRFlen - 1
- mov DI, offset $OVLYFN + FNlen - 1
- mov CX, FNlen - PRFlen
- std
- rep movsb
- ;move our prefix into front of file name area
- mov SI, offset Prefix
- mov DI, offset $OVLYFN
- mov CX, PRFlen
- cld
- rep movsb
- ;
- mov AL, 0 ;Tell loader to try this file name.
- ret
- ;
- Error:
- mov AH, 9 ;print our error message.
- mov DX, offset Err
- int 21H
- mov AL, 1 ;Stop the program.
- ret
- ;
- $OVLYMU endp
- OVcode ends
- end