source: rtems/c/src/ada-tests/samples/hello/sptest.adb @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 837 bytes
Line 
1--
2--  SPTEST / BODY
3--
4--  DESCRIPTION:
5--
6--  This package is the implementation of Test 1 of the RTEMS
7--  Single Processor Test Suite.
8--
9--  DEPENDENCIES:
10--
11-- 
12--
13--  COPYRIGHT (c) 1989-2011.
14--  On-Line Applications Research Corporation (OAR).
15--
16--  The license and distribution terms for this file may in
17--  the file LICENSE in this distribution or at
18--  http://www.rtems.org/license/LICENSE.
19--
20
21with TEXT_IO;
22
23package body SPTEST is
24
25--
26--  INIT
27--
28
29   procedure INIT (
30      ARGUMENT : in     RTEMS.TASKS.ARGUMENT
31   ) is
32      pragma Unreferenced(ARGUMENT);
33   begin
34
35      TEXT_IO.NEW_LINE( 2 );
36      TEXT_IO.PUT_LINE( "*** HELLO WORLD TEST ***" );
37      TEXT_IO.PUT_LINE( "Hello World" );
38      TEXT_IO.PUT_LINE( "*** END OF HELLO WORLD TEST ***" );
39
40      RTEMS.SHUTDOWN_EXECUTIVE( 0 );
41
42   end INIT;
43
44end SPTEST;
Note: See TracBrowser for help on using the repository browser.