From 64b3a9c56b26d2adfa79f8e4e8df00e3b27edd9a Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 25 Sep 2007 16:02:21 -0700 Subject: [PATCH] nasmdoc: shorten lines which are too long --- doc/nasmdoc.src | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/nasmdoc.src b/doc/nasmdoc.src index 1b5049d0..4ea2885b 100644 --- a/doc/nasmdoc.src +++ b/doc/nasmdoc.src @@ -6314,16 +6314,16 @@ displacement size as \c{QWORD}: \c default abs \c -\c mov eax,[foo] ; 32-bit absolute displacement (-2..2 GB) -\c mov eax,[a32 foo] ; 32-bit absolute displacement (0..4 GB) -\c mov eax,[qword foo] ; 64-bit absolute displacement +\c mov eax,[foo] ; 32-bit absolute disp (-2..2 GB) +\c mov eax,[a32 foo] ; 32-bit absolute disp (0..4 GB) +\c mov eax,[qword foo] ; 64-bit absolute disp \c \c default rel \c -\c mov eax,[foo] ; 32-bit relative displacement +\c mov eax,[foo] ; 32-bit relative disp \c mov eax,[a32 foo] ; d:o, address truncated to 32 bits(!) -\c mov eax,[qword foo] ; 32-bit relative displacement(!) -\c mov eax,[abs qword foo] ; 64-bit absolute displacement +\c mov eax,[qword foo] ; 32-bit relative disp(!) +\c mov eax,[abs qword foo] ; 64-bit absolute disp FIXME: THIS IS NOT YET CORRECTLY IMPLEMENTED