diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-02-28 20:40:11 +0100 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-02-28 20:40:11 +0100 |
commit | e699ff88fd42dd144f6a0b4e9c3311c852b0fb71 (patch) | |
tree | c104eee2ffd96a747f4bf85ad1affbce9b891be5 /lib/arch/arm64/README.md | |
parent | e58a957f32e0becfe49f313a819087789211a6c2 (diff) | |
download | matcha-threads-e699ff88fd42dd144f6a0b4e9c3311c852b0fb71.tar.gz matcha-threads-e699ff88fd42dd144f6a0b4e9c3311c852b0fb71.zip |
updated READMEs
Diffstat (limited to 'lib/arch/arm64/README.md')
-rw-r--r-- | lib/arch/arm64/README.md | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/arch/arm64/README.md b/lib/arch/arm64/README.md index 9bf85bf..b726186 100644 --- a/lib/arch/arm64/README.md +++ b/lib/arch/arm64/README.md @@ -1,9 +1,12 @@ -# Procedure Call Standard ARM64 +# ARM64 (aapcs64) +Provide an implementation of the platform specific API as required in +[`api.h`](../api.h) according to the `ARM64 Procedure Call Standard (aapcs64)`. +## Notes: Procedure Call Standard ARM64 (aapcs64) - Integer/pointer arguments via `x0`-`x7` - Integer/pointer return values via `x0` - Callee saved registers `x19`-`x28`, `sp` -## Reference +## References - [johannst arm64 notes](https://johannst.github.io/notes/arch/arm64.html) - +- [Procedure Call Standard aapcs64](https://github.com/ARM-software/abi-aa/blob/master/aapcs64/aapcs64.rst) |