1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-13 19:29:34 +00:00

tapeio.s updates

This commit is contained in:
Wayne Parham 2021-06-07 00:35:20 -05:00
parent dc9333a3bb
commit 88ee45e9ef
2 changed files with 4 additions and 13 deletions

View File

@ -1,9 +0,0 @@
// Traditional "Hello World" program
#include <stdio.h>
void main (void)
{
printf( "Hello World!\n" );
return;
}