From 0d89862b75ce81513f50292b772a610eb3f0966c Mon Sep 17 00:00:00 2001 From: Jason <154414066+bou-samra@users.noreply.github.com> Date: Mon, 8 Dec 2025 20:40:35 +1100 Subject: [PATCH] Update CSUB example in README.md --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0c9e965..7fb7a8e 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,12 @@ Multiple embedded routines can be used in a program, each defining a different m ## CSUB Code Example ```basic -CSUB test -00000000 20420047 +CSUB simple +00000000 00004770 END CSUB -test() - -PRINT "Returned value in R0 was 42" +simple() +PRINT " Returned successfully" ```` ![Description](IMG_0019.JPG) ---