From 8e76334c20abe4dce3756d5ac59195c100b46566 Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 2 May 2025 16:30:49 +0200 Subject: [PATCH] Fixed minor typo --- oscar64.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar64.md b/oscar64.md index ba1b492..db94085 100644 --- a/oscar64.md +++ b/oscar64.md @@ -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. -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(myfunc, 256)