diff options
author | Arnold Metselaar <arnold.metselaar@planet.nl> | 2006-02-05 11:57:35 +0000 |
---|---|---|
committer | Arnold Metselaar <arnold.metselaar@planet.nl> | 2006-02-05 11:57:35 +0000 |
commit | 134dcee5bc81ad43fc6596d7d70eab234d1893dc (patch) | |
tree | 71716447aab9f0553e60428780b5282d7d941444 /gas/doc/c-z80.texi | |
parent | 7a40282ac71d728b56bf6c594b0210ab9e8cd590 (diff) | |
download | gdb-134dcee5bc81ad43fc6596d7d70eab234d1893dc.zip gdb-134dcee5bc81ad43fc6596d7d70eab234d1893dc.tar.gz gdb-134dcee5bc81ad43fc6596d7d70eab234d1893dc.tar.bz2 |
Cleanup of pseudo-ops for constants and new def24,def32 pseudo-ops on z80
Diffstat (limited to 'gas/doc/c-z80.texi')
-rw-r--r-- | gas/doc/c-z80.texi | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gas/doc/c-z80.texi b/gas/doc/c-z80.texi index c3e64bf..76e8410 100644 --- a/gas/doc/c-z80.texi +++ b/gas/doc/c-z80.texi @@ -150,14 +150,24 @@ These are the additional directives in @code{@value{AS}} for the Z80: @item db @var{expression}|@var{string}[,@var{expression}|@var{string}...] @itemx defb @var{expression}|@var{string}[,@var{expression}|@var{string}...] For each @var{string} the characters are copied to the object file, for -each other @var{expression} the value is stored in one byte, ignoring -overflow. +each other @var{expression} the value is stored in one byte. +A warning is issued in case of an overflow. @item dw @var{expression}[,@var{expression}...] @itemx defw @var{expression}[,@var{expression}...] For each @var{expression} the value is stored in two bytes, ignoring overflow. +@item d24 @var{expression}[,@var{expression}...] +@itemx def24 @var{expression}[,@var{expression}...] +For each @var{expression} the value is stored in three bytes, ignoring +overflow. + +@item d32 @var{expression}[,@var{expression}...] +@itemx def32 @var{expression}[,@var{expression}...] +For each @var{expression} the value is stored in four bytes, ignoring +overflow. + @item ds @var{count}[, @var{value}] @itemx defs @var{count}[, @var{value}] @c Synonyms for @code{ds.b}, |