Code snippets of MacOS assembly.
- NASM;
- 32 bit:
nasm -f macho xxx_32.asm;ld -o xxx_32 -e _main xxx_32.o - 64 bit:
nasm -f macho64 xxx_64.asm;ld -o xxx_64 -e _main xxx_64.o
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Code snippets of MacOS assembly.
nasm -f macho xxx_32.asm;ld -o xxx_32 -e _main xxx_32.onasm -f macho64 xxx_64.asm;ld -o xxx_64 -e _main xxx_64.o