diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2003-06-05 22:28:15 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2003-06-05 22:28:15 +0000 |
commit | 98a30c52192d5316fb538b3ad68c5160b84346ff (patch) | |
tree | 80bca7c978f4e996718ae412da4b07698b306d12 | |
parent | 1ff88b5fe7749d6f3c3c7b52473d2f858ec1d27f (diff) | |
download | mdk-98a30c52192d5316fb538b3ad68c5160b84346ff.tar.gz mdk-98a30c52192d5316fb538b3ad68c5160b84346ff.tar.bz2 |
(Conversion operators): rewording
-rw-r--r-- | doc/mdk_tut.texi | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/mdk_tut.texi b/doc/mdk_tut.texi index a33444a..ecdd823 100644 --- a/doc/mdk_tut.texi +++ b/doc/mdk_tut.texi @@ -4,7 +4,7 @@ @c Free Software Foundation, Inc. @c See the file mdk.texi for copying conditions. -@c $Id: mdk_tut.texi,v 1.9 2003/06/05 22:23:10 jao Exp $ +@c $Id: mdk_tut.texi,v 1.10 2003/06/05 22:28:15 jao Exp $ @node MIX and MIXAL tutorial, Getting started, Installing MDK, Top @comment node-name, next, previous, up @@ -724,10 +724,11 @@ value in @samp{rA} (i.e., we end up with @samp{[rA]} = @w{+ 0 46 62 52 0} = 12315904). If any byte in @samp{rA} or @samp{rB} does not belong to the range -30-39, it is taken by @samp{NUM} as the representation of the digit -obtained by taking its value modulo 10. E.g. 30, 40, 50, 60 all represent -the digit 0; 2, 12, 22,... the digit 2, and so on. For instance, the -number 0012315904 mentioned above could also be represented as +30-39, it is interpreted by @samp{NUM} as the digit obtained by taking +its value modulo 10. E.g. values 0, 10, 20, 30, 40, 50, 60 all represent the +digit 0; 2, 12, 22, etc. represent the digit 2, and so on. For +instance, the number 0012315904 mentioned above could also be +represented as @example [rA] = + 10 40 31 52 23 |