23 (578B)
1 2 3 Some general notes on asm, this program, and stuff 4 ---------------------------------------- 5 6 - Asm is what most languages compile to 7 8 - Every cpu architecture has its own version of asm 9 10 - Different assemblers have different syntax, 11 while producing the same machine code 12 13 This program 14 ----------- 15 16 - Written in GAS (gnu assembler), for 64 bit linux systems 17 18 - Does not rely on libc, uses syscalls straight to the kernel 19 20 - Makes no stack or heap memory allocation, excluding 21 call stack (runs entirely in the 15 registers from x86_64)