https://github.com/sclorentz/low_level
C.A. presentation: Tests with no_std rust and integrated asm
https://github.com/sclorentz/low_level
aarch64 assembly linker-script rust smallest x86-64
Last synced: about 1 year ago
JSON representation
C.A. presentation: Tests with no_std rust and integrated asm
- Host: GitHub
- URL: https://github.com/sclorentz/low_level
- Owner: SCLorentz
- Created: 2024-06-02T17:49:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-03T22:27:53.000Z (about 1 year ago)
- Last Synced: 2025-04-03T23:26:17.559Z (about 1 year ago)
- Topics: aarch64, assembly, linker-script, rust, smallest, x86-64
- Language: Rust
- Homepage:
- Size: 957 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stripped Binaries
---
use `run` to run the program
useful websites:
https://www.cs.montana.edu/courses/spring2005/518/Hypertextbook/vijay/syscalltable/37.htm
https://arm64.syscall.sh/
## Functions
| | Linux aarch64 | Linux x86_64 | Windows | Windows on arm | MacOS |
|-------|---------------|--------------|---------|----------------|-------|
| exit | yes | yes | yes | no | yes |
| read | yes | yes | no | no | no |
| write | yes | yes | no | no | no |
| exec | yes | not tested | no | no | no |
| kill | not tested | no | no | no | no |