From: Debbie Wiles Date: Mon, 20 May 2002 21:46:47 +0000 (+0000) Subject: Added a reference to the section on mixed size addressing (9.2) to the section on... X-Git-Tag: nasm-2.11.05~2372 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2feab99ee958dd1430cdc89c9a64a91585c3a52d;p=platform%2Fupstream%2Fnasm.git Added a reference to the section on mixed size addressing (9.2) to the section on effective addresses (3.3). --- diff --git a/doc/nasmdoc.src b/doc/nasmdoc.src index 50bf85b..c854917 100644 --- a/doc/nasmdoc.src +++ b/doc/nasmdoc.src @@ -1221,6 +1221,14 @@ code fragment) by using \c{[byte eax+offset]}. As special cases, \c{[dword eax]} will code it with a double-word offset of zero. The normal form, \c{[eax]}, will be coded with no offset field. +The form described in the previous paragraph is also useful if you +are trying to access data in a 32-bit segment from within 16 bit code. +For more information on this see the section on mixed-size addressing +(\k{mixaddr}). In particular, if you need to access data with a known +offset that is larger than will fit in a 16-bit value, if you don't +specify that it is a dword offset, nasm will cause the high word of +the offset to be lost. + Similarly, NASM will split \c{[eax*2]} into \c{[eax+eax]} because that allows the offset field to be absent and space to be saved; in fact, it will also split \c{[eax*2+offset]} into