2021-05-09 16:34:53 -05:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// Hello World for Sym-1
|
|
|
|
//
|
|
|
|
// Wayne Parham
|
|
|
|
//
|
|
|
|
// wayne@parhamdata.com
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2021-06-07 11:50:47 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <sym1.h>
|
2021-05-09 16:34:53 -05:00
|
|
|
|
2021-06-16 16:47:38 -05:00
|
|
|
int main (void) {
|
2021-05-09 16:34:53 -05:00
|
|
|
char c = 0x00;
|
|
|
|
int d = 0x00;
|
|
|
|
int l = 0x00;
|
|
|
|
|
2021-06-16 17:14:44 -05:00
|
|
|
printf ("\nHello World!\n\n");
|
2021-05-09 16:34:53 -05:00
|
|
|
|
2021-06-16 17:14:44 -05:00
|
|
|
for ( l = 0; l < 2; l++ ) {
|
2021-05-09 16:34:53 -05:00
|
|
|
beep();
|
2021-06-16 17:14:44 -05:00
|
|
|
for ( d = 0; d < 10 ; d++ ) {
|
2021-05-09 16:34:53 -05:00
|
|
|
}
|
|
|
|
}
|
2021-06-16 17:14:44 -05:00
|
|
|
printf ("Type a line and press ENTER, please.\n\n");
|
2021-05-09 16:34:53 -05:00
|
|
|
|
2021-06-16 17:14:44 -05:00
|
|
|
while ( c != '\n' ) {
|
2021-05-09 16:34:53 -05:00
|
|
|
c = getchar();
|
|
|
|
}
|
|
|
|
|
2021-06-16 17:14:44 -05:00
|
|
|
printf ("\n\nThanks!\n\n");
|
2021-05-09 16:34:53 -05:00
|
|
|
|
2021-06-16 17:14:44 -05:00
|
|
|
for ( l = 0; l < 5; l++ ) {
|
2021-05-09 16:34:53 -05:00
|
|
|
beep();
|
2021-06-16 17:14:44 -05:00
|
|
|
for ( d = 0; d < 10 ; d++ ) {
|
2021-05-09 16:34:53 -05:00
|
|
|
}
|
|
|
|
}
|
2021-06-16 07:35:18 -05:00
|
|
|
|
|
|
|
return 0;
|
2021-05-09 16:34:53 -05:00
|
|
|
}
|