home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-386-Vol-2of3.iso
/
b
/
bootp.zip
/
PEEKL.ASM
< prev
next >
Wrap
Assembly Source File
|
1987-05-01
|
384b
|
25 lines
include masmdefs.hsm
include model.hsm
codedef PEEKL
datadef
cstart PEEKL
cpublic peekl
push si
mov bx,es
les si,dword ptr @ab[bp]
mov ax,es:[si]
mov dx,es:[si+2]
mov es,bx
pop si
creturn peekl
cend PEEKL
end