Update docs

This commit is contained in:
Aetias
2024-04-12 16:20:15 +02:00
parent b0cd453331
commit 298024544f
4 changed files with 31 additions and 141 deletions
+2 -2
View File
@@ -25,8 +25,8 @@ bx lr
The built-in `ldconst` instruction will be replaced by an ARM load instruction and also append a pool constant to the function.
### Data sections
Directives such as `.section`, `.data` and `.bss` are not supported in the inline assembler. There might be a way to change
section with a `#pragma`, but there's no need to. Data should only be defined in standalone assembly or C/C++.
Directives such as `.section`, `.data` and `.bss` are not supported in the inline assembler. It's possible to change section
with a `#pragma`, but there's no need to. Data should only be defined in standalone assembly or C/C++.
### Comments
Inline assembly is handled by the compiler, so comments must be in C/C++ format. This means using `//` and `/* */` instead of