diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-08-07 23:35:29 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-08-22 23:37:33 +0200 |
commit | 1a5f22eb8e3bca005804f1cd36856a0114144795 (patch) | |
tree | 51ccc26042eeddf7692905a8e008590eff193fc2 | |
parent | ee193abba85e0f0d96e0863f31940fede39cafef (diff) | |
download | notes-1a5f22eb8e3bca005804f1cd36856a0114144795.tar.gz notes-1a5f22eb8e3bca005804f1cd36856a0114144795.zip |
arch: link juicebox and rv64i nostd
-rw-r--r-- | src/arch/riscv.md | 2 | ||||
-rw-r--r-- | src/arch/x86_64.md | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/riscv.md b/src/arch/riscv.md index 483638c..3e2a0b7 100644 --- a/src/arch/riscv.md +++ b/src/arch/riscv.md @@ -73,6 +73,8 @@ Hi ASM-World! ## References - [GNU Assembler][gas_doc] - [GNU Assembler Directives][gas_directives] +- [rv64i-linux-user-no-std][rvi64_nostd] [gas_doc]: https://sourceware.org/binutils/docs/as [gas_directives]: https://sourceware.org/binutils/docs/as/Pseudo-Ops.html#Pseudo-Ops +[rvi64_nostd]: https://github.com/johannst/rv64i-linux-user-no-std diff --git a/src/arch/x86_64.md b/src/arch/x86_64.md index c61b328..7e9008d 100644 --- a/src/arch/x86_64.md +++ b/src/arch/x86_64.md @@ -285,6 +285,7 @@ Hi ASM-World! - [GNU Assembler][gas_doc] - [GNU Assembler Directives][gas_directives] - [GNU Assembler `x86_64` dependent features][gas_x86_64] +- [`juicebox-asm` an `x86_64` jit assembler playground][juicebox] [sysvabi]: https://www.uclibc.org/docs/psABI-x86_64.pdf @@ -298,3 +299,4 @@ Hi ASM-World! [gas_doc]: https://sourceware.org/binutils/docs/as [gas_directives]: https://sourceware.org/binutils/docs/as/Pseudo-Ops.html#Pseudo-Ops [gas_x86_64]: https://sourceware.org/binutils/docs/as/i386_002dDependent.html +[juicebox]: https://github.com/johannst/juicebox-asm |