diff options
author | Nick Clifton <nickc@redhat.com> | 2020-12-11 16:49:38 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2020-12-11 16:49:38 +0000 |
commit | 14a772212b8e8e19b45a23e2dacb61ceff0d4979 (patch) | |
tree | 92f39382bd232d4c19ca1392f7412c82b5754652 | |
parent | 07d9937a201b2ff66b4ca98eac70581fd17c1aa0 (diff) | |
download | binutils-14a772212b8e8e19b45a23e2dacb61ceff0d4979.zip binutils-14a772212b8e8e19b45a23e2dacb61ceff0d4979.tar.gz binutils-14a772212b8e8e19b45a23e2dacb61ceff0d4979.tar.bz2 |
Add support for the .bss pseudo-op to the Z80 assembler.
PR 27047
* config/tc-z80.c (s_bss): New function.
(md_pseudo_table): Add bss entry.
-rw-r--r-- | gas/ChangeLog | 7 | ||||
-rw-r--r-- | gas/config/tc-z80.c | 10 |
2 files changed, 17 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 6672da4..71644af 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2020-12-11 Sergey Belyashov <sergey.belyashov@gmail.com> + Nick Clifton <nickc@redhat.com> + + PR 27047 + * config/tc-z80.c (s_bss): New function. + (md_pseudo_table): Add bss entry. + 2020-12-10 Nelson Chu <nelson.chu@sifive.com> * config/tc-riscv.c (riscv_ext): New function. Use md_assemblef diff --git a/gas/config/tc-z80.c b/gas/config/tc-z80.c index e5dc877..9c88a44 100644 --- a/gas/config/tc-z80.c +++ b/gas/config/tc-z80.c @@ -3445,6 +3445,15 @@ area (int arg) psect (arg); } +/* Handle the .bss pseudo-op. */ + +static void +s_bss (int ignore ATTRIBUTE_UNUSED) +{ + subseg_set (bss_section, 0); + demand_empty_rest_of_line (); +} + /* Port specific pseudo ops. */ const pseudo_typeS md_pseudo_table[] = { @@ -3460,6 +3469,7 @@ const pseudo_typeS md_pseudo_table[] = { ".hd64", set_inss, INS_Z180}, { ".z80", set_inss, INS_Z80}, { ".z80n", set_inss, INS_Z80N}, + { "bss", s_bss, 0}, { "db" , emit_data, 1}, { "d24", z80_cons, 3}, { "d32", z80_cons, 4}, |