diff options
author | Steve Chamberlain <sac@cygnus> | 1991-11-28 21:23:39 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1991-11-28 21:23:39 +0000 |
commit | 17b8147980c2f851866d53a09d4a62628f754cfb (patch) | |
tree | 3a11e0bfd4ce1ebdcc433632738ea0cc6495f4f3 /gas | |
parent | f714e310f48fa529451a44444aeee0fb6f644000 (diff) | |
download | gdb-17b8147980c2f851866d53a09d4a62628f754cfb.zip gdb-17b8147980c2f851866d53a09d4a62628f754cfb.tar.gz gdb-17b8147980c2f851866d53a09d4a62628f754cfb.tar.bz2 |
* config/tc-h8300.c: made $ statement sep, and int alloc 2 bytes.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-h8300.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gas/config/tc-h8300.c b/gas/config/tc-h8300.c index 83065c2..9008cac 100644 --- a/gas/config/tc-h8300.c +++ b/gas/config/tc-h8300.c @@ -31,6 +31,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <ctype.h> char comment_chars[] = { ';',0 }; +char line_separator_chars[] = { '$' ,0}; /* This table describes all the machine specific pseudo-ops the assembler has to support. The fields are: @@ -38,8 +39,11 @@ char comment_chars[] = { ';',0 }; function to call to execute this pseudo-op Integer arg to pass to the function */ + +void cons(); const pseudo_typeS md_pseudo_table[] = { - { 0, 0, 0 } + { "int", cons, 2 }, + { 0, 0, 0 } }; int md_reloc_size ; |