Assembly Language Fundamentals
- Main PROC / INVOKE ExitProcess,0 / Main ENDP 는 기본적으로 적어야하는 코드 틀이다. - INVOKE ExitProcess,0을 시행하게 되면 OS 내에 특정 부분으로 JUMP하게 된다. - 변수를 선언하기 위해서 .data와 .code로 구분하게 된다. - Assembly 언어에서는 numeric literal을 정의하기 위해서 숫자 뒤에 d(decimal), h(hexadecimal), b(binary), q(octal)을 붙여줘야한다. - 이때, default는 decimal이다. - numeric literal 사이의 연산자에는 +, -, *, /, MOD 등이 있다. - When we use variables, we should not use reserved..
더보기