어셈블리
irvine
파아랑새
2017. 5. 1. 23:08
(*참고 : http://ajlab.tistory.com/entry/Visual-Studio-2010-MASM-%ED%99%98%EA%B2%BD-%EC%84%A4%EC%A0%95)
INCLUDE Irvine32.inc
.code
main PROC
mov eax, 10000h
add eax, 40000h
sub eax, 20000h
call DumpRegs
exit
main ENDP
END main