1
0
mirror of https://github.com/fadden/6502bench.git synced 2025-07-15 11:24:21 +00:00

Add multi-inline extension script to tutorial

It's useful to have an example of an extension script that handles
multiple types of things.  It's also good to show that scripts can
handle data types other than strings, and can chase an address to
format data items elsewhere in the code.

This required updating the tutorial binary, adding the new script,
and updating the tutorial text and associated screen shots.
This commit is contained in:
Andy McFadden
2021-08-15 09:52:12 -07:00
parent ec2ad529c8
commit 992e008e7d
13 changed files with 213 additions and 10 deletions

View File

@@ -13,11 +13,18 @@
jsr PrintInlineZString2
asc 'Test two',00
jsr PrintInlineAddr
dw test_three
rts
test_three asc 'Test three',00
PrintInlineL1String
rts
PrintInlineZString1
rts
PrintInlineZString2
rts
PrintInlineAddr
rts