Subject

libasm.pdf

C12.pdf

C04.pdf

추후 Learning

Application Binary Interface

.global _start // starting point of a program
.intel_syntax noprefix // GNU Assembler(GAS) directive to set intel_syntax instead of the default AT&T syntax
//no prefix to get rid of r or e for registers

assembly 파일은 .s 확장자를 갖게 된다.

ex. asem.s

as asem.s -o asem.o // object file 생성
// 이후 ld 혹은 gcc 를 사용하여 링킹을 할 수 있다.
gcc -o asem asem.o -nostlib -static // nostdlib (no standard c library) static - 정적 링킹
// ld 사용을 원할 시 gcc 자리에 ld 넣어주면 되는듯

Assembly language 란?

ISA 와 Assembly 언어의 관계