panic.c 400 B

123456789101112131415
  1. /*
  2. * Copyright (C) 2003 Richard Curnow, SuperH UK Limited
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. */
  8. void
  9. panic_handler(unsigned long panicPC, unsigned long panicSSR,
  10. unsigned long panicEXPEVT)
  11. {
  12. /* Never return from the panic handler */
  13. for (;;) ;
  14. }