home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
1990
/
06
/
tricks
/
inline.asm
< prev
next >
Wrap
Assembly Source File
|
1990-03-07
|
389b
|
13 lines
;* ------------------------------------------------------- *
;* INLINE.ASM *
;* ------------------------------------------------------- *
mov ax,b000
mov es,ax
mov di,0
mov cx,2000
mov al,1
mov ah,94
rep stosw
;* ------------------------------------------------------- *
;* Ende von INLINE.ASM *