summaryrefslogtreecommitdiffstats
path: root/usr.bin/doscmd/redir.S
blob: 1f40f3cce6e884d213f368b240e95268952fcde7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
! Copyright (c) 1997 Helmut Wirth <hfwirth@ping.at>
! All rights reserved.
!
! Redistribution and use in source and binary forms, with or without
! modification, are permitted provided that the following conditions
! are met:
! 1. Redistributions of source code must retain the above copyright
!    notice immediately at the beginning of the file, witout modification,
!    this list of conditions, and the following disclaimer.
! 2. Redistributions in binary form must reproduce the above copyright
!    notice, this list of conditions and the following disclaimer in the
!    documentation and/or other materials provided with the distribution.
! 3. The name of the author may not be used to endorse or promote products
!    derived from this software without specific prior written permission.
!
! THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
! IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
! OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
! IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
! INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
! NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
! DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
! THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
! (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
! THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
!
! $FreeBSD$


!
! This is the new redirector program, it replaces instbsdi.exe
! The program fetches some pointers from DOS and reports them back to
! the emulator via the emulator interrupt 0xff. It does not stay resident.

use16

.text
.bss
.data
.align 0

! Emulator interrupt entry
EmulatorINT = 0xFF
! Emulator redirector function
EmulatorRED = 0x1

! DOS interrupt
DOSInt      = 0x21

! DOS get list of lists call, returns pointer to system vars in ES:BX 
DOSGetList  = 0x52

! DOS get swappable area, returns DOS swappable area in DS:SI
DOSGetSwapD = 0x5D06

! DOS terminate program with return code
DOSExit	    = 0x4C

! DOS print message
DOSMesg	    = 0x9

cr      =       0xd
lf      =       0xa
eom     =       '$'             ! DOS end of string

	.org 0x100

.globl _main
_main:
	
	mov 	ah, #DOSGetList
	int 	DOSInt
	jc	Fail
	mov 	[_list], bx
	mov 	ax, es
	mov	[_list+2], ax
	push 	ds
	mov 	ax, #DOSGetSwapD
	int 	DOSInt
	mov	ax, ds
	pop	ds
	jc	Fail
	mov 	[_swap], si
	mov	[_swap+2], ax
	push	ax
	mov	ah, #EmulatorRED
	mov	dx, [_list]
	mov	bx, [_list+2]
	mov	si, [_swap]
	mov	di, [_swap+2]
	int	EmulatorINT
	xor	al, al			! return 0
	jmp	Exit
Fail:
	mov	ah, #DOSMesg
	mov	dx, #ErrorMessage
	int	DOSInt
	mov	al, #1			! return 1
Exit:
	mov	ah, #DOSExit
	int 	DOSInt
!
!	Should never get to this point
!
	nop
	nop
	hlt

! The two pointers are found using the DOS calls
! and passed to the redirector interface via int FF
! The two pointers are passed in BX:DX (list) and DI:SI (swap)

.align	2

_list:	.word 0
	.word 0
_swap:	.word 0
	.word 0

ErrorMessage:
	.ascii	"Error installing redirector interface"
	.byte	cr,lf,eom, 0
OpenPOWER on IntegriCloud