home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: Programmierung
/
SOURCE.mdf
/
programm
/
msdos
/
c
/
zoo_src
/
mssup201
/
macros.ai
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1986-08-27
|
284 b
|
17 lines
;procedure index, used in-line to save some microseconds
call_index macro
mov si,bx ;si = bx * 5 (5 byte hash entries)
shl si,1 ;si = bx * 2 * 2 + bx
shl si,1
add si,bx
endm
malloc macro siz
ifdif <bx>,<siz>
mov bx,siz
endif
mov ah,48h
int 21h
endm