Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```