1. 程式人生 > >組合語言hello world (winows 32 位 彙編程式)

組合語言hello world (winows 32 位 彙編程式)

程式的執行編譯執行依賴於彙編程式和連線程式,以下僅提供程式碼

; hello world.asm

			include io32.inc
			.data
msg 		byte 'Hello,world',13,10,0
			.code
start:
			mov eax,offset msg
			call dispmsg
			
			exit 0
			end start