aboutsummaryrefslogtreecommitdiff
path: root/bfd/cpu-z80.c
diff options
context:
space:
mode:
Diffstat (limited to 'bfd/cpu-z80.c')
-rw-r--r--bfd/cpu-z80.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/bfd/cpu-z80.c b/bfd/cpu-z80.c
index 2917320..96fcfa3 100644
--- a/bfd/cpu-z80.c
+++ b/bfd/cpu-z80.c
@@ -40,18 +40,23 @@ compatible (const bfd_arch_info_type *a, const bfd_arch_info_type *b)
return (a->arch == bfd_arch_z80) ? & bfd_z80_arch : NULL;
}
-#define N(name,print,default,next) \
- { 16, 16, 8, bfd_arch_z80, name, "z80", print, 0, default, \
+#define N(name,print,bits,default,next) \
+ { 16, bits, 8, bfd_arch_z80, name, "z80", print, 0, default, \
compatible, bfd_default_scan, bfd_arch_default_fill, next, 0 }
#define M(n) &arch_info_struct[n]
static const bfd_arch_info_type arch_info_struct[] =
{
- N (bfd_mach_z80strict, "z80-strict", FALSE, M(1)),
- N (bfd_mach_z80, "z80", FALSE, M(2)),
- N (bfd_mach_z80full, "z80-full", FALSE, M(3)),
- N (bfd_mach_r800, "r800", FALSE, NULL)
+ N (bfd_mach_z80full, "z80-full", 16, FALSE, M(1)),
+ N (bfd_mach_z80strict, "z80-strict", 16, FALSE, M(2)),
+ N (bfd_mach_z80, "z80", 16, FALSE, M(3)),
+ N (bfd_mach_r800, "r800", 16, FALSE, M(4)),
+ N (bfd_mach_gbz80, "gbz80", 16, FALSE, M(5)),
+ N (bfd_mach_z180, "z180", 16, FALSE, M(6)),
+ N (bfd_mach_ez80_z80, "ez80-z80", 16, FALSE, M(7)),
+ N (bfd_mach_ez80_adl, "ez80-adl", 24, FALSE, NULL)
};
-const bfd_arch_info_type bfd_z80_arch = N (0, "z80-any", TRUE, M(0));
+const bfd_arch_info_type bfd_z80_arch =
+ N (bfd_mach_z80full, "z80-full", 16, TRUE, M(1));