resetvec.S 288 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * U-Boot - x86 Startup Code
  4. *
  5. * (C) Copyright 2002
  6. * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
  7. */
  8. /* Reset vector, jumps to start16.S */
  9. .extern start16
  10. .section .resetvec, "ax"
  11. .code16
  12. reset_vector:
  13. cli
  14. cld
  15. jmp start16