annotate docs/ccguide/strass.refentry @ 2772:0a3f4d8ea6d5

Found ENDC in wrong location in dwread.asm and dwwrite.asm. Corrected. Moved the native 6309 code in dwread.asm and dwwrite.asm into the H6309 labeled area and changed IFEQ H6309 to IFNE H6309. Also moved the 57600bps 6809 code to the default location. This change had been done in the old dwread.asm and dwwrite.asm files to make it easier to follow. Though these two files were overwritten from the HDBDOS project dwread.asm and dwwrite.asm files. So this conversion needed to be done again so it made the source easier to follow.
author drencor-xeen
date Wed, 23 Jan 2013 12:36:55 -0600
parents 091a1e4ae051
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
1 <refentry id="strass">
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
2 <refnamediv>
468
60b821f18853 A little here and there.
roug
parents: 466
diff changeset
3 <refname>Strass</refname>
60b821f18853 A little here and there.
roug
parents: 466
diff changeset
4 <refpurpose>byte by byte copy</refpurpose>
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
5 </refnamediv>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
6
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
7 <refsynopsisdiv>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
8 <funcsynopsis>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
9 <funcprototype>
468
60b821f18853 A little here and there.
roug
parents: 466
diff changeset
10 <funcdef><function>_strass</function></funcdef>
473
091a1e4ae051 entered: chdir chmod qsort strass toupper tsleep wait
roug
parents: 468
diff changeset
11 <paramdef>char *<parameter>s1</parameter></paramdef>
091a1e4ae051 entered: chdir chmod qsort strass toupper tsleep wait
roug
parents: 468
diff changeset
12 <paramdef>char *<parameter>s2</parameter></paramdef>
091a1e4ae051 entered: chdir chmod qsort strass toupper tsleep wait
roug
parents: 468
diff changeset
13 <paramdef>int <parameter>count</parameter></paramdef>
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
14 </funcprototype>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
15 </funcsynopsis>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
16
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
17 </refsynopsisdiv>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
18
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
19 <refsect1><title>Description</title>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
20 <para>
473
091a1e4ae051 entered: chdir chmod qsort strass toupper tsleep wait
roug
parents: 468
diff changeset
21 Until such time as the compiler can deal with structure
091a1e4ae051 entered: chdir chmod qsort strass toupper tsleep wait
roug
parents: 468
diff changeset
22 assignment, this function is useful for copying one structure
091a1e4ae051 entered: chdir chmod qsort strass toupper tsleep wait
roug
parents: 468
diff changeset
23 to another.
091a1e4ae051 entered: chdir chmod qsort strass toupper tsleep wait
roug
parents: 468
diff changeset
24 </para>
091a1e4ae051 entered: chdir chmod qsort strass toupper tsleep wait
roug
parents: 468
diff changeset
25 <para>
091a1e4ae051 entered: chdir chmod qsort strass toupper tsleep wait
roug
parents: 468
diff changeset
26 "Count" bytes are copied from memory location at "s2" to memory
091a1e4ae051 entered: chdir chmod qsort strass toupper tsleep wait
roug
parents: 468
diff changeset
27 as "s1" regardless of the contents.
466
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
28 </para>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
29 </refsect1>
bea58398bb15 Skeletons for the C Compiler User's Guide, 1983
roug
parents:
diff changeset
30 </refentry>