mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-04 15:05:03 +00:00
4b46b78e34
Copied the extension script tutorial files out of the Scripts directory and into the Tutorial directory. This makes more sense, and makes it possible to expand the script sample without altering the tutorial. Reverted the Scripts sample to be an actual sample, rather than a tutorial. Renumbered the last two tutorials and added them to the ToC. This gives them actual numbers rather than treating them as add-ons to the advanced tutorial. Moved the source files for the tutorial binaries into a subdirectory to reduce clutter. This does mean we have two separate copies of the inline string sample plugins, but that's an artifact of our attempts at security.
24 lines
470 B
ArmAsm
24 lines
470 B
ArmAsm
; Copyright 2019 faddenSoft. All Rights Reserved.
|
|
; See the LICENSE.txt file for distribution terms (Apache 2.0).
|
|
;
|
|
; Assembler: Merlin 32
|
|
|
|
org $1000
|
|
|
|
jsr PrintInlineL1String
|
|
str 'How long?'
|
|
|
|
jsr PrintInlineZString1
|
|
asc 'Test one',00
|
|
|
|
jsr PrintInlineZString2
|
|
asc 'Test two',00
|
|
rts
|
|
|
|
PrintInlineL1String
|
|
rts
|
|
PrintInlineZString1
|
|
rts
|
|
PrintInlineZString2
|
|
rts
|