Update docs

This commit is contained in:
Aetias
2024-07-02 10:32:58 +02:00
parent 77e7c6d8d4
commit 26bcdcc2e1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -122,7 +122,7 @@ Non-matching functions must be written as follows:
```cpp
#include "global.hpp"
NONMATCH void MyFunction() {
void NONMATCH(MyFunction)() {
#ifndef NONMATCHING
#include "../asm/path/to/asm.inc"
#else
+1 -1
View File
@@ -21,7 +21,7 @@ dcd 0x1234
#### `ldconst`: Loads a literal 32-bit value
```asm
ldconst r0, 0x1234
ldconst r0, #0x1234
bx lr
```
This code is equivalent to the above example using `dcd`.