home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.wwiv.com
/
ftp.wwiv.com.zip
/
ftp.wwiv.com
/
pub
/
PPPBCKP
/
SRC
/
SRC15B69.ZIP
/
WATTSRC.ZIP
/
ELIB
/
INTEL.ASM
< prev
next >
Wrap
Assembly Source File
|
1994-11-28
|
981b
|
47 lines
PAGE 66,132
;
;
;
;
;
;
;
;
; intel - convert intel <--> bigendian
;
;
; (c) 1990 University of Waterloo,
; Faculty of Engineering,
; Engineering Microcomputer Network Development Office
;
;
;
include masmdefs.hsm
include model.hsm
codedef intel
datadef
cstart intel
;*************************************************************************
; USAGE: ULONG intel( ULONG val )
; - convert to intel format
;*************************************************************************
cpublic intel
mov AX, +@AB + 2 [BP]
mov DX, +@AB + 0 [BP]
xchg AL, AH
xchg DL, DH
creturn intel
;*************************************************************************
; USAGE: UINT intel16( UINT val )
; - convert to intel format
;*************************************************************************
cpublic intel16
mov AX, +@AB [BP]
xchg AL, AH
creturn intel16
cend intel
end