From 44b68ea4cf48cc04dec6a6401d65cf9754b87039 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 30 Oct 2017 17:40:38 +0000 Subject: [PATCH] obj: make Z80 an 8080 variant as this makes more sense --- Applications/MWC/cmd/asz80/obj.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Applications/MWC/cmd/asz80/obj.h b/Applications/MWC/cmd/asz80/obj.h index ab5a1265..40309559 100644 --- a/Applications/MWC/cmd/asz80/obj.h +++ b/Applications/MWC/cmd/asz80/obj.h @@ -7,12 +7,14 @@ struct objhdr { uint16_t o_magic; uint8_t o_arch; -#define OA_Z80 1 +#define OA_8080 1 uint8_t o_flags; uint16_t o_cpuflags; -#define OA_Z80_Z180 1 -#define OA_Z80_Z280 2 -#define OA_Z80_R800 4 +#define OA_8080_Z80 1 +#define OA_8080_Z180 2 +#define OA_8080_Z280 4 +#define OA_8080_R800 8 +#define OA_8080_8085 16 uint32_t o_segbase[OSEG]; uint16_t o_size[OSEG]; uint32_t o_symbase; -- 2.34.1