我有这个ASM计划。这很简单,但我需要帮助解释它。
code_segment SEGMENT
assume cs:code_segment
a1:call subroutine
a2:inc ax
a3:call subroutine
a4:inc bx
mov ah,4ch
int 21h
subroutine proc near
mov ax,0
mov bx,0
ret
subroutine endp
code_segment ends
end
答案 0 :(得分:4)
自从我完成任何程序集编程以来已经超过20年了,但我已经记住了这个......