CSAPP - 기본
Operating Systems Concept - 기본
agner fog’s optimization guide
engineering a compiler
Compilers: Principles, Techniques, and Tools (Aho, Sethi, Ullman) - 공룡책
Tool:
Godbolt Compiler Explorer (godbolt.org)
.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 넣어주면 되는듯