resetvec.S 304 B

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