diff --git a/Test/helloworld.s b/Test/helloworld.s new file mode 100644 index 0000000..9027fd7 --- /dev/null +++ b/Test/helloworld.s @@ -0,0 +1,11 @@ +; Uses S-C Assembler variant. +* This is also a valid comment... + org $800 +main ldy #$00 +start_loop lda HelloWorld,y + beq end_loop + jsr $fded ; ROM routine, COUT, y is preserved + iny + bne start_loop +end_loop rts +HelloWorld ASC "HELLO WORLD!"00 diff --git a/Test/test.s b/Test/test.s deleted file mode 100644 index 9df551a..0000000 --- a/Test/test.s +++ /dev/null @@ -1,11 +0,0 @@ -; This is a comment -ADC X -DA Y -A EQU "STRING" -bne -BRA -* THat is a comment too. -"" - - -