Browse Source

Merge pull request #604 from mggates39/feature/UpdateProgrammingDemos

Update programming demos
pull/609/head
Wayne Warthen 6 months ago
committed by GitHub
parent
commit
2eb4e5606c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      Source/Images/d_aztecc/u0/HELLO.C
  2. 2
      Source/Images/d_bascomp/u0/HELLO.BAS
  3. 11
      Source/Images/d_hitechc/Readme.txt
  4. 7
      Source/Images/d_hitechc/u0/HELLO.C
  5. 7
      Source/Images/d_hitechc/u1/HELLO.C
  6. 0
      Source/Images/devDemo.def.example

2
Source/Images/d_aztecc/u0/HELLO.C

@ -5,5 +5,3 @@ main()
printf("Hello World, from Aztec C line %d\n", i);
}
}


2
Source/Images/d_bascomp/u0/HELLO.BAS

@ -2,5 +2,3 @@
20 PRINT "Hello World from BASIC, line"; I
30 NEXT I
40 END


11
Source/Images/d_hitechc/Readme.txt

@ -51,3 +51,14 @@ warning and error messages. The code number for each of these
messages will still be printed. The textual description for all of
these warnings/errors can be found in the Doc/Language directory,
HI-TECH Z80 C Compiler Messages.txt.
== Sample Application ==
This disk image includes a very small sample application called
HELLO.C that can be used to demonstrate the build process. The
following commands will build this sample application.
C -V HELLO.C
Then run it by typeing
HELLO

7
Source/Images/d_hitechc/u0/HELLO.C

@ -0,0 +1,7 @@
main()
{
int i;
for( i = 1; i <= 10; i++ ) {
printf("Hello World, from HiTech C line %d\n", i);
}
}

7
Source/Images/d_hitechc/u1/HELLO.C

@ -0,0 +1,7 @@
main()
{
int i;
for( i = 1; i <= 10; i++ ) {
printf("Hello World, from HiTech C line %d\n", i);
}
}

0
Source/Images/demo_dev.def.example → Source/Images/devDemo.def.example

Loading…
Cancel
Save