From 82d7e5955c3d1e0d5fc68cfa4bd848654bce8113 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Wed, 15 Nov 2017 21:07:11 +0000 Subject: [PATCH] obj: Fix object file format 32bit alignment Otherwise it'll be a pain in the butt for cross tools and testing (This breaks every existing object file... at least natively) --- Applications/MWC/cmd/asz80/obj.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/MWC/cmd/asz80/obj.h b/Applications/MWC/cmd/asz80/obj.h index 32b59a56..4645b730 100644 --- a/Applications/MWC/cmd/asz80/obj.h +++ b/Applications/MWC/cmd/asz80/obj.h @@ -32,7 +32,7 @@ struct objhdr #define OA_DGNOVA_FPU 2 #define OA_DGNOVA_NOVA3 4 #define OA_DGNOVA_NOVA4 8 - + uint16_t o_unused; /* So it packs right */ uint32_t o_segbase[OSEG]; uint16_t o_size[OSEG]; uint32_t o_symbase; -- 2.34.1