Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/exbin.refentry @ 1014:d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
The os9l1guide and os9l2guide are now much more modular simply because
the sections that are not to be included in one of them is defined as
the empty string in the <!ENTITY declaration
Split exbin and binex pages so the occur at the right place in the manual.
Got the content for wcreate from the Internet.
author | roug |
---|---|
date | Tue, 04 Mar 2003 20:05:50 +0000 |
parents | |
children | b5ff125a1d60 |
rev | line source |
---|---|
1014
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
1 <refentry id="exbin"> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
2 <refnamediv> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
3 <refname id="exbinname">EXBIN</refname> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
4 <refpurpose>Convert S-Record To Binary File</refpurpose> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
5 </refnamediv> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
6 |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
7 <refsynopsisdiv> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
8 <cmdsynopsis> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
9 <command>EXBIN</command> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
10 <arg choice="plain"><replaceable>path2</replaceable></arg> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
11 <arg choice="plain"><replaceable>path1</replaceable></arg> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
12 </cmdsynopsis> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
13 </refsynopsisdiv> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
14 |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
15 <refsect1><title>Description</title> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
16 <para> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
17 S-Record files are a type of text file that contains records that |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
18 represent binary data in hexadecimal character form. This |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
19 Motorola-standard format is often directly accepted by commercial PROM |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
20 programmers, emulators, logic analyzers and similar devices that are |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
21 interfaced RS-232 interfaces. It can also be useful for |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
22 transmitting files over data links that can only handle character-type |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
23 data; or to convert OS-9 assembler or compiler-generated |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
24 programs to load on non-OS-9 systems. |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
25 </para> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
26 <para> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
27 "Path1" is assumed to be an |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
28 S-Record format text file which EXBIN converts to pure binary form on |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
29 a new file called "path2". The load addresses of each data record |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
30 must describe continguous data in ascending order. |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
31 </para> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
32 <para> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
33 EXBIN does not generate or check for the proper OS-9 module |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
34 headers or CRC check value required to actually load the binary |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
35 file. The IDENT or VERIFY commands can be used to check the |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
36 validity of the modules if they are to be loaded or run. |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
37 Example: |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
38 </para> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
39 <screen> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
40 exbin program.S1 cmds/program |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
41 </screen> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
42 </refsect1> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
43 </refentry> |
d9ed9d44b70c
Some character entities had missing semicolons. It's &CPU;
roug
parents:
diff
changeset
|
44 |