/* * Copyright 2022, Haiku Inc. All rights reserved. * Distributed under the terms of the MIT License. * * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. * Distributed under the terms of the MIT License. */ /** This file contains the final part of the ".init" and ".fini" sections in * the ELF executable. It is tightly connected to crti.S. * Have a look at crti.S to find a description of what happens here. */ .section .init ldr lr, [sp] add sp, sp, #8 bx lr .section .fini ldr lr, [sp] add sp, sp, #8 bx lr