crti.S 218 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. .global _init
  7. .section .init
  8. _init:
  9. push %ebp
  10. .global _fini
  11. .section .fini
  12. _fini:
  13. push %ebp