00F91668 mov esp,ebp
00F9166A pop ebp
00F9166B ret 8
请问一下,这个ret 8是什么意思
基于Monster 组和GPT的调写:+
;函数调用打印hello
assume ds:data,ss,stack,cs:code
;-------1 数据段--------
data segment
string db 'hello$'
data ends
;-------2.栈段--------
stack segment
db 100 dup(2)
stack ends
;-------3. 代码段--------
code segment
start:
mov ax,data
mov ds,ax
mov ax,stack
mov ss,ax
;函数调用
call print
mov ah,4cH
int 21h
print:
mov dx,string offset
mov ah,9h
int 21h
;函数返回
ret
code ends
end start