From f0c56b9036179bdebcb651e2ca11dcdb4210ca18 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Sun, 25 Jun 2000 16:49:47 +0000 Subject: [PATCH] Assemble ldmac correctly. --- gas/ChangeLog | 4 ++++ gas/config/tc-h8300.c | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index b42a6063851..0f135ae1eab 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2000-06-25 Kazu Hirata + + * config/tc-h8300.c (build_bytes): Assemble ldmac correctly. + 2000-06-24 DJ Delorie * config/tc-i386.c (md_estimate_size_before_relax): Revert diff --git a/gas/config/tc-h8300.c b/gas/config/tc-h8300.c index ab9f7337cae..399cd0e085d 100644 --- a/gas/config/tc-h8300.c +++ b/gas/config/tc-h8300.c @@ -1026,7 +1026,12 @@ build_bytes (this_try, operand) if (c & MACREG) { - nib = 2 + operand[d].reg; + if (operand[0].mode == MACREG) + /* stmac has mac[hl] as the first operand. */ + nib = 2 + operand[0].reg; + else + /* ldmac has mac[hl] as the second operand. */ + nib = 2 + operand[1].reg; } } nibble_count++; -- 2.30.2