Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/load.refentry @ 975:c565a4700689
The entitity replstart was replaced with <replaceable>
author | roug |
---|---|
date | Sat, 01 Feb 2003 20:25:53 +0000 |
parents | d9631713b7cd |
children | 4dae346c4969 |
rev | line source |
---|---|
138 | 1 <refentry id="load"> |
2 <refnamediv> | |
3 <refname>LOAD</refname> | |
4 <refpurpose>Load module(s) from file into memory</refpurpose> | |
5 </refnamediv> | |
6 | |
7 <refsynopsisdiv> | |
8 <cmdsynopsis> | |
9 <command>LOAD</command> | |
10 <arg choice="plain"> | |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
138
diff
changeset
|
11 <replaceable>path</replaceable> |
138 | 12 </arg> |
13 </cmdsynopsis> | |
14 </refsynopsisdiv> | |
15 | |
16 <refsect1><title>Description</title> | |
17 <para> | |
18 The path specified is opened and one or more modules is read from it | |
19 and loaded into memory. The names of the modules are added to the | |
20 module directory. If a module is loaded that has the same name and | |
21 type as a module already in memory, the module having the highest | |
22 revision level is kept. | |
23 </para> | |
24 <para> | |
25 For more information see: 3.9.4, 5.4.1, 5.4.2 | |
26 </para> | |
27 </refsect1> | |
28 <refsect1><title>Examples</title> | |
29 <literallayout> | |
30 load new_program | |
31 </literallayout> | |
32 | |
33 <screen> | |
34 | |
35 OS9:mdir | |
36 | |
37 Module Directory at 13:36:47 | |
38 DCB4 D0 D1 D2 D3 | |
39 OS9P2 INIT OS9 IOMAN REF | |
40 SCF ACIA TERM T1 T2 | |
41 T3 P PIA CDS H1 | |
42 Sysgo Clock Shell Tsmon Copy | |
43 Mdir | |
44 | |
45 OS9:load edit | |
46 OS9:mdir | |
47 | |
48 Module Directory at 13:37:14 | |
49 DCB4 D0 D1 D2 D3 | |
50 OS9P2 INIT OS9 IOMAN REF | |
51 SCF ACIA TERM T1 T2 | |
52 T3 P PIA CDS H1 | |
53 Sysgo Clock Shell Tsmon Copy | |
54 Mdir EDIT | |
55 </screen> | |
56 </refsect1> | |
57 </refentry> | |
58 |