https://github.com/artainmo/libasm
42 school project. Write foundational functions is Assembly.
https://github.com/artainmo/libasm
42school assembly
Last synced: over 1 year ago
JSON representation
42 school project. Write foundational functions is Assembly.
- Host: GitHub
- URL: https://github.com/artainmo/libasm
- Owner: artainmo
- Created: 2020-09-24T12:55:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-21T09:02:45.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T15:32:10.554Z (over 1 year ago)
- Topics: 42school, assembly
- Language: Assembly
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# libasm
42 school project. Write foundational functions in Assembly.
## Compile and Run
`nasm -fmacho64 hw.s && ld hw.o && ./a.out`
## References
* Write in x86_64 Intel Mac OS X ([nasm tutorial](https://cs.lmu.edu/~ray/notes/nasmtutorial/))
* See all the system calls ([Linux_System_Call_Table_for_x86_64/](https://blog.rchapman.org/posts/Linux_System_Call_Table_for_x86_64/)).