summaryrefslogtreecommitdiff
path: root/docs/inline_assembler.md
diff options
context:
space:
mode:
authorAetias <aetias@outlook.com>2024-04-12 16:20:15 +0200
committerAetias <aetias@outlook.com>2024-04-12 16:20:15 +0200
commit298024544f24ce7141cdd958fed78563a84d2c00 (patch)
treeadda2ad855f9524fa04f486eddbb0a8797279fff /docs/inline_assembler.md
parentb0cd453331252eb6877d5f4c41b3d302e9891e63 (diff)
Update docs
Diffstat (limited to 'docs/inline_assembler.md')
-rw-r--r--docs/inline_assembler.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/inline_assembler.md b/docs/inline_assembler.md
index 80957121..a6489998 100644
--- a/docs/inline_assembler.md
+++ b/docs/inline_assembler.md
@@ -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