diff options
| author | Aetias <aetias@outlook.com> | 2024-04-12 16:20:15 +0200 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2024-04-12 16:20:15 +0200 |
| commit | 298024544f24ce7141cdd958fed78563a84d2c00 (patch) | |
| tree | adda2ad855f9524fa04f486eddbb0a8797279fff /docs/inline_assembler.md | |
| parent | b0cd453331252eb6877d5f4c41b3d302e9891e63 (diff) | |
Update docs
Diffstat (limited to 'docs/inline_assembler.md')
| -rw-r--r-- | docs/inline_assembler.md | 4 |
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 |
