summaryrefslogtreecommitdiffstats
path: root/hello_world_ada/hello.adb
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-17 17:36:53 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-09-17 17:36:53 +0000
commite3df5e2f3b380e3176bc3580167b5a864995ebe8 (patch)
treec7c9629274576a413a719f37c3adfb11e2d2a7eb /hello_world_ada/hello.adb
parent2009-09-17 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadada-examples-e3df5e2f3b380e3176bc3580167b5a864995ebe8.tar.bz2
2009-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* hello.adb: Make follow standard RTEMS test output format. * hello_world_ada.scn: New file. * pc386-elf2boot: Removed.
Diffstat (limited to 'hello_world_ada/hello.adb')
-rw-r--r--hello_world_ada/hello.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/hello_world_ada/hello.adb b/hello_world_ada/hello.adb
index 63f8ac0..803b94e 100644
--- a/hello_world_ada/hello.adb
+++ b/hello_world_ada/hello.adb
@@ -6,7 +6,7 @@ with Text_IO; use Text_IO;
procedure Hello is
begin
- Put_Line ("GNAT/RTEMS Hello World Test");
+ Put_Line ("*** GNAT/RTEMS Hello World Test ***");
New_Line;
Put_Line ("Welcome to the World of Lady Ada");
@@ -15,6 +15,6 @@ begin
delay 2.5;
Put_Line ("Delay Complete");
- Put_Line ("Test Complete");
+ Put_Line ("*** END OF GNAT/RTEMS Hello World Test ***");
end Hello;