q-int.S 292 B

1234567891011121314151617
  1. /*
  2. * Qemu interrupt handler code.
  3. *
  4. * Copyright (C) 2005 by Ralf Baechle
  5. */
  6. #include <asm/asm.h>
  7. #include <asm/regdef.h>
  8. #include <asm/stackframe.h>
  9. .align 5
  10. NESTED(qemu_handle_int, PT_SIZE, sp)
  11. SAVE_ALL
  12. CLI
  13. move a0, sp
  14. PTR_LA ra, ret_from_irq
  15. j do_qemu_int
  16. END(qemu_handle_int)