026.一个标准的32bit汇编语言程序模板

; Program template

.386
.model flat,stdcall
.stack 4096
ExitProcess proto,dwExitCode:dword

.data
	; declare variables here
.code
main proc
	; write your code here

	invoke ExitProcess,0
main endp
end main

猜你喜欢

转载自blog.csdn.net/dosdiosas_/article/details/106297937