32ビットアセンブリ言語

2020FZUアセンブリ言語学習 - 実験()

ここに画像を挿入説明

include Irvine32.inc
.data
	dat dword 3,4
	sum dword ?
.code
main proc
	xor esi,esi   	;清零 esi
	mov eax,dat[esi]
	add eax,dat[esi+4]
	mov sum,eax
	;mov eax,sum   
	;call writeint    输出sum
exit
main endp
end main
リリース9件のオリジナルの記事 ウォンの賞賛0 ビュー99

おすすめ

転載: blog.csdn.net/weixin_44586132/article/details/105325479