Merge pull request #2765 from polluks/master

Fixed minor typos
This commit is contained in:
Bob Andrews
2025-07-02 16:22:09 +02:00
committed by GitHub
4 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
* macro was fixed some time after 2.19 to (VER_MAJOR * 0x100) + VER_MINOR.
*
* The following strategy can be used to still compare for less or greater versions,
* should this really be necessary or wanted - it is not recommended afterall.
* should this really be necessary or wanted - it is not recommended after all.
*/
#include <stdio.h>

View File

@@ -775,7 +775,7 @@ _DrawChar: sty tempy
sta dest_hi
lda #0 ; Get the address in font memory where this
sta src_hi ; Petscii chracter lives (after conversion from
sta src_hi ; Petscii character lives (after conversion from
lda tempa ; ascii)
sty temp2

View File

@@ -1,5 +1,5 @@
/*
* Sim65 trace functionailty example.
* Sim65 trace functionality example.
*
* Description
* -----------

View File

@@ -73,7 +73,7 @@ int main (void) {
displayable = 1; // Assume character is mapped
switch ( buffer[l] ) { // Put the typed charaters
switch ( buffer[l] ) { // Put the typed characters
case '1': // into the display buffer
DISPLAY.d6 = DISP_1; // one at a time
break;