home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 3
/
hamradioversion3.0examsandprograms1992.iso
/
misc
/
9q920411
/
eaglevec.asm
< prev
next >
Wrap
Assembly Source File
|
1992-04-03
|
709b
|
43 lines
; Eagle (8530 card) interrupt hooks
.MODEL MEMMOD,C
LOCALS
%MACS
.LALL
extrn Stktop,Spsave,Sssave,egint:proc,doret:proc,eoi:proc
.CODE
dbase dw @Data ; save loc for ds (must be in code segment)
; eg0vec - Eagle card #0 interrupt handler
public eg0vec
label eg0vec far
push ds ; save on user stack
mov ds,cs:dbase ; establish interrupt data segment
mov Sssave,ss ; stash user stack context
mov Spsave,sp
mov ss,cs:dbase
lea sp,Stktop
push ax ; save user regs on interrupt stack
push bx
push cx
push dx
push bp
push si
push di
push es
call eoi
mov ax,0 ; arg for service routine
push ax
call egint
inc sp
inc sp
jmp doret
end