Merge pull request #240 from polluks/patch-2

Fixed minor typo
This commit is contained in:
drmortalwombat 2025-05-02 17:40:39 +02:00 committed by GitHub
commit 686d468d32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -749,7 +749,7 @@ Regions can also be used to place assets such as character sets at fixed locatio
The #pragma data(), #pragma code() and #pragma bss() control the placement of the generated objects into sections other than the default sections. The #pragma data(), #pragma code() and #pragma bss() control the placement of the generated objects into sections other than the default sections.
A global variable or function can be aligned on a given power of two start with the align pragma. This is most usefull if a page crossing is problematic. The compiler may also be able to generate more efficient code, if a larger variable is page aligned. A global variable or function can be aligned on a given power of two start with the align pragma. This is most useful if a page crossing is problematic. The compiler may also be able to generate more efficient code, if a larger variable is page aligned.
#pragma align(myvar, 8) #pragma align(myvar, 8)
#pragma align(myfunc, 256) #pragma align(myfunc, 256)