|
|
|
@ -55,12 +55,16 @@ const char FLT_CHARS[] = "fF"; |
|
|
|
function to call to execute this pseudo-op |
|
|
|
integer arg to pass to the function */ |
|
|
|
|
|
|
|
extern void obj_coff_section (); |
|
|
|
|
|
|
|
const pseudo_typeS md_pseudo_table[] = |
|
|
|
{ |
|
|
|
{ "align", s_align_bytes, 4 }, /* Do byte alignment, default is a 4 byte boundary */ |
|
|
|
{ "word", cons, 4 }, /* FIXME: Should this be machine independent? */ |
|
|
|
{ "bss", s_lcomm, 1 }, |
|
|
|
{ NULL, NULL, 0 } |
|
|
|
{ "align", s_align_bytes, 4 }, /* Do byte alignment, default is a 4 byte boundary */ |
|
|
|
{ "word", cons, 4 }, /* FIXME: Should this be machine independent? */ |
|
|
|
{ "bss", s_lcomm, 1 }, |
|
|
|
{ "sect", obj_coff_section, 0}, /* For compatibility with TI tools */ |
|
|
|
{ "section", obj_coff_section, 0}, /* Standard COFF .section pseudo-op */ |
|
|
|
{ NULL, NULL, 0 } |
|
|
|
}; |
|
|
|
|
|
|
|
/* Opcode hash table. */ |
|
|
|
|