From bc94cacf9ed7b5ed35864bb62559b1859a921a70 Mon Sep 17 00:00:00 2001 From: Tim Soderstrom Date: Wed, 18 Feb 2026 07:41:55 -0600 Subject: [PATCH] Escape asm example for mouse_config --- X16 Reference - 05 - KERNAL.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/X16 Reference - 05 - KERNAL.md b/X16 Reference - 05 - KERNAL.md index 13873ac..2b4cadc 100644 --- a/X16 Reference - 05 - KERNAL.md +++ b/X16 Reference - 05 - KERNAL.md @@ -969,10 +969,12 @@ The arguments in .X and .Y specify the screen resolution in 8 pixel increments. **EXAMPLE:** - SEC - JSR screen_mode ; get current screen size (in 8px) into .X and .Y - LDA #1 - JSR mouse_config ; show the default mouse pointer +```ASM +SEC +JSR screen_mode ; get current screen size (in 8px) into .X and .Y +LDA #1 +JSR mouse_config ; show the default mouse pointer +``` ---