From: Alan Cox Date: Mon, 30 Oct 2017 17:40:38 +0000 (+0000) Subject: obj: make Z80 an 8080 variant as this makes more sense X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=44b68ea4cf48cc04dec6a6401d65cf9754b87039;p=FUZIX.git obj: make Z80 an 8080 variant as this makes more sense --- 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;