linker: reordered section 'zone' so zone.o comes first

This commit is contained in:
A.M. Rowsell 2025-12-21 14:46:20 -05:00
commit 53a9c6c91d
Signed by: amr
GPG key ID: E0879EDBDB0CA7B1

View file

@ -2,7 +2,7 @@
/* SPDX-FileCopyrightText: (c) 2025 A.M. Rowsell */
SECTIONS
{
.zone 0xA000 : { *(.zone) *(zone) }
.zone 0xA000 : { zone.o(zone) float.o(zone) *(.zone) *(zone) }
.boot 0xC3C3 : { *(.boot) *(boot) }
.vectors 0xF000 : { *(.vectors) }
.data 0x7000 : { *(.data) }