1987-01-08 10:13:48 +00:00
|
|
|
.sect .text; .sect .rom; .sect .data; .sect .bss
|
|
|
|
.sect .text
|
1985-02-07 15:33:13 +00:00
|
|
|
.define .sti
|
|
|
|
|
|
|
|
! #bytes in cx
|
|
|
|
! destination address in di
|
|
|
|
.sti:
|
|
|
|
pop bx ! return address
|
|
|
|
sar cx,1
|
|
|
|
jnb 1f
|
|
|
|
pop ax
|
|
|
|
stosb
|
|
|
|
jmp bx
|
|
|
|
1:
|
|
|
|
mov si,sp
|
|
|
|
rep movs
|
|
|
|
mov sp,si
|
|
|
|
jmp bx
|