diff --git a/libsrc/sym1/tapeio.s b/libsrc/sym1/tapeio.s index dbb6963ca..19eeb2444 100644 --- a/libsrc/sym1/tapeio.s +++ b/libsrc/sym1/tapeio.s @@ -21,8 +21,8 @@ ldy #$80 jsr LOADT ; Read data from tape bcs error - jmp return 0 ; Return 0 if sucessful -error: jmp return 1 ; or 1 if not + jmp return0 ; Return 0 if sucessful +error: jmp return1 ; or 1 if not .endproc @@ -40,8 +40,8 @@ error: jmp return 1 ; or 1 if not ldy #$80 jsr DUMPT ; Write data to tape bcs error - jmp return 0 ; Return 0 if sucessful -error: jmp return 1 ; or 1 if not + jmp return0 ; Return 0 if sucessful +error: jmp return1 ; or 1 if not .endproc diff --git a/samples/helloworld.c b/samples/helloworld.c deleted file mode 100644 index 057a153e8..000000000 --- a/samples/helloworld.c +++ /dev/null @@ -1,9 +0,0 @@ -// Traditional "Hello World" program - -#include - -void main (void) -{ - printf( "Hello World!\n" ); - return; -}