diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-02-26 23:19:03 +0100 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-02-26 23:19:03 +0100 |
commit | 0d881bc974b74dff75c00a3cab5d535cbb2ace46 (patch) | |
tree | 35c5892c135d5623879b106e93df4cc235669a8d /lib/arch/arm/README.md | |
parent | 5fbee6be76c8751c282b45c54b8179ae525e00c1 (diff) | |
download | matcha-threads-0d881bc974b74dff75c00a3cab5d535cbb2ace46.tar.gz matcha-threads-0d881bc974b74dff75c00a3cab5d535cbb2ace46.zip |
added implementation for armv7a
Diffstat (limited to 'lib/arch/arm/README.md')
-rw-r--r-- | lib/arch/arm/README.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/arch/arm/README.md b/lib/arch/arm/README.md new file mode 100644 index 0000000..8631c93 --- /dev/null +++ b/lib/arch/arm/README.md @@ -0,0 +1,9 @@ +# Procedure Call Standard ARM64 + +- Integer/pointer arguments via `r0`-`r3` +- Integer/pointer return values via `r0` +- Callee saved registers `r4`-`r11`, `sp`, `lr`, `fp` + +## Reference +- [johannst armv7 notes](https://johannst.github.io/notes/arch/armv7.html) + |