1
0
Fork 0
Assembly Code for arm64 architecture syscalls.
Go to file
Sgt. Bubbles 21a3379c61 Initial Commit: Common Syscalls done
I simply added the syscalls that I use for my projects without the
standard library. This includes the following:
    - fileio
    - inet
    - clock & timer
    - sysinfo & other system syscalls

This only tests the write syscall by echoing "Hello, World!"
2023-12-21 22:42:13 -05:00
include Initial Commit: Common Syscalls done 2023-12-21 22:42:13 -05:00
misc Initial Commit: Common Syscalls done 2023-12-21 22:42:13 -05:00
src Initial Commit: Common Syscalls done 2023-12-21 22:42:13 -05:00
.gitignore Initial commit 2023-12-22 02:05:09 +01:00
LICENSE Initial commit 2023-12-22 02:05:09 +01:00
README.md Initial Commit: Common Syscalls done 2023-12-21 22:42:13 -05:00

README.md

syscall-aarch64

Assembly Code for arm64 architecture syscalls.

Additional Notes

Please read over the code and verify it! This is my template for the arm64 syscall table.

The code tests the write syscall, echoing hello_world and thats it!