mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
25 lines
522 B
C
25 lines
522 B
C
// --------------------------------------------------------------------------
|
|
// Hello World for Kim-1
|
|
//
|
|
// Dave Plummer based on Sym-1 sample by Wayne Parham
|
|
//
|
|
// davepl@davepl.com
|
|
// --------------------------------------------------------------------------
|
|
|
|
#include <stdio.h>
|
|
#include <kim1.h>
|
|
|
|
int main (void)
|
|
{
|
|
char str[100];
|
|
char c = 0x00;
|
|
|
|
printf ("\nHello World!\n\n");
|
|
printf ("Type a line and press ENTER, please.\n\n");
|
|
|
|
gets( str );
|
|
|
|
printf ("\n\nThanks: %s\n\n", str);
|
|
return 0;
|
|
}
|