Binary is a Sample codes for assembly, linker and attack demos
Rule
*.asm is NASM source code file
*.s is GNU Assembly (i.e., GAS) source code file
*.nasm.o is NASM object file
*.gas.o is GAS object file
*.nasm is NASM executable file
*.gas is GAS executable file
Installation :
git clone https://github.com/jaebaek/Binary
cd Binary
cd nasm.base
make
usage executable file:
./compile_gas.sh <file>
./compile_nasm.sh <file>
Debug :
gdb -q <file>
Source : https://github.com/jaebaek