g0kkk / SignalHandler

Signal handling implementation in 32bit and 64bit asm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SignalHandler

Signal handling implementation in 32bit and 64bit asm

Working

To compile 32 bit asm,

  1. nasm -f elf32 32bit.asm
  2. ld -m elf_i386 -o <out_file> 32bit.o

To compile 64 bit asm,

  1. nasm -f elf64 64bit.asm
  2. ld 64bit.o -o <output_file>

References

  1. Link 1

About

Signal handling implementation in 32bit and 64bit asm

License:MIT License


Languages

Language:Assembly 100.0%