Lenovo ThinkPad 600X Technical Reference Manual for the ThinkPad 600 - Page 86

Calling Convention Pseudo Code, Assembler Language, C Language

Page 86 highlights

Calling Convention Pseudo Code The following describes the calling convention using pseudo code. Assembler Language InputParm OutputParm SMB_INPARM SMB_OUTPARM < > 16-bit push mov push push mov push call add ds ax, offset OutputParm ax ds ax, offset InputParm ax dword ptr SmapiBios sp, 8 32-bit push mov push push mov push call add ds eax, offset OutputParm eax ds eax, offset InputParm eax fword ptr SmapiBios sp, 16 C Language typedef WORD (far SMB)(FPINPARM, FPOUTPARM) ; SMB INPARM OUTPARM WORD SmapiBios ; InputParm ; OutputParm ; RC ; RC = SmapiBios(&InputParm, &OutputParm) ; B-10 SMAPI BIOS

  • 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
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147

Calling Convention Pseudo Code
The following describes the calling convention using pseudo code.
Assembler Language
InputParm
SMB_INPARM
<>
OutputParm
SMB_OUTPARM
<>
16-bit
push
ds
mov
ax, offset OutputParm
push
ax
push
ds
mov
ax, offset InputParm
push
ax
call
dword ptr SmapiBios
add
sp, 8
32-bit
push
ds
mov
eax, offset OutputParm
push
eax
push
ds
mov
eax, offset InputParm
push
eax
call
fword ptr SmapiBios
add
sp, 16
C Language
typedef WORD (far
SMB)(FPINPARM, FPOUTPARM) ;
SMB
SmapiBios ;
INPARM
InputParm ;
OUTPARM
OutputParm ;
WORD
RC ;
RC = SmapiBios(&InputParm, &OutputParm) ;
B-10
SMAPI BIOS