| | 1 | /* |
| | 2 | * Copyright (c) 2002 by Michael J. Roberts. All Rights Reserved. |
| | 3 | * |
| | 4 | * Please see the accompanying license file, LICENSE.TXT, for information |
| | 5 | * on using and copying this software. |
| | 6 | */ |
| | 7 | /* |
| | 8 | Name |
| | 9 | core.h - sample T3 source code defining an intrinsic function set |
| | 10 | for the 'vmcore.cpp' sample |
| | 11 | Function |
| | 12 | |
| | 13 | Notes |
| | 14 | |
| | 15 | Modified |
| | 16 | 04/06/02 MJRoberts - Creation |
| | 17 | */ |
| | 18 | |
| | 19 | #ifndef CORE_H |
| | 20 | #define CORE_H |
| | 21 | |
| | 22 | intrinsic 'core-sample/010000' |
| | 23 | { |
| | 24 | /* display the given string */ |
| | 25 | displayText(str); |
| | 26 | |
| | 27 | /* read a line of text from the keyboard, and return it as a string */ |
| | 28 | readText(); |
| | 29 | } |
| | 30 | |
| | 31 | #endif /* CORE_H */ |