ReC98/zuncom/moveup.asm

12 lines
150 B
NASM

.8086
.model tiny
.code
org 100h ;doesn't matter, needed for linker
moveup:
rep movsb
pop ax
mov ax, 100h
push ax
retn
END moveup