Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enty8080/m1-assembly
Some samples and tutorial for Apple's M1 arm64 processor.
https://github.com/enty8080/m1-assembly
Last synced: 27 days ago
JSON representation
Some samples and tutorial for Apple's M1 arm64 processor.
- Host: GitHub
- URL: https://github.com/enty8080/m1-assembly
- Owner: enty8080
- Created: 2021-01-17T15:04:10.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-10T14:31:46.000Z (5 months ago)
- Last Synced: 2024-08-11T11:57:11.286Z (5 months ago)
- Language: Makefile
- Homepage: http://enty8080.netlify.app
- Size: 23.4 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# M1 Assembly
Some samples and tutorial for Apple's M1 arm64 CPU.
## Registers
* **x0-x8** - 9 arguments to syscall
* **x16/w8** - System Call function number
* **x0-x1** - 2 return values (in case of fork)## Building
**Dependencies:** [HatAsm - Advanced Assembler](https://github.com/EntySec/HatAsm)
```
cd hello
make
./hello
```