Guest User

Untitled

a guest
Apr 26th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. import structs/ArrayList
  2.  
  3. halExceptions: ArrayList<String>
  4. halExceptions = [
  5. "0 #DE Divide Error",
  6. "1 #DB RESERVED",
  7. "2 - NMI Interrupt",
  8. "3 #BP Breakpoint",
  9. "4 #OF Overflow",
  10. "5 #BR BOUND Range Exceeded",
  11. "6 #UD Invalid Opcode (Undefined Opcode)",
  12. "7 #NM Device Not Available (No Math Coprocessor)",
  13. "8 #DF Double Fault",
  14. "9 Coprocessor Segment Overrun (reserved)",
  15. "10 #TS Invalid TSS",
  16. "11 #NP Segment Not Present",
  17. "12 #SS Stack-Segment Fault",
  18. "13 #GP General Protection",
  19. "14 #PF Page Fault",
  20. "15 - (Intel reserved. Do not use.)",
  21. "16 #MF x87 FPU Floating-Point Error (Math Fault)",
  22. "17 #AC Alignment Check",
  23. "18 #MC Machine Check",
  24. "19 #XM SIMD Floating-Point Exception",
  25. "20 - Intel reserved. Do not use.",
  26. "21 - Intel reserved. Do not use.",
  27. "22 - Intel reserved. Do not use.",
  28. "23 - Intel reserved. Do not use.",
  29. "24 - Intel reserved. Do not use.",
  30. "25 - Intel reserved. Do not use.",
  31. "26 - Intel reserved. Do not use.",
  32. "27 - Intel reserved. Do not use.",
  33. "28 - Intel reserved. Do not use.",
  34. "29 - Intel reserved. Do not use.",
  35. "30 - Intel reserved. Do not use.",
  36. "31 - Intel reserved. Do not use."
  37. ]
Add Comment
Please, Sign In to add comment