aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/smapi/smapi_bios.S
blob: 010d9cdfae805b62c9c3ad1b661d8992d48441a0 (plain) (blame)
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
/* $FreeBSD$ */

#include <machine/asmacros.h>

	.text
/*
 * smapi32(input_param, output_param)
 *	struct smapi_bios_parameter *input_parm;
 *	struct smapi_bios_parameter *output_parm;
 */
ENTRY(smapi32)
	pushl	%ebp			/* Save frame */
	movl	%esp,%ebp

	pushl	%ds
	pushl	0x0c(%ebp)		/* Output Param */
	pushl	%ds
	pushl	0x08(%ebp)		/* Input Param */

	movl	$0,%eax			/* Clear EAX (return 0) */
	movw	%cs,smapi32_segment	/* Save CS */
	lcall	*(smapi32_offset)

	leave
	ret

/*
 * smapi32(offset, segment, input_param, output_param)
 *	u_int offset;
 *	u_short segment;
 *	struct smapi_bios_parameter *input_parm;
 *	struct smapi_bios_parameter *output_parm;
 */
ENTRY(smapi32_new)
	pushl	%ebp			/* Save frame */
	movl	%esp,%ebp

	movl	0x08(%ebp),%eax
	movl	%eax,smapi32_offset
	movw	0x0c(%ebp),%ax
	movw	%ax,smapi32_segment

	pushl	%ds
	pushl	0x20(%ebp)		/* Output Param */
	pushl	%ds
	pushl	0x10(%ebp)		/* Input Param */

	movl	$0,%eax
	movw	%cs,smapi32_segment
	lcall	*(smapi32_offset)

	leave
	ret