Advertisement
Guest User

Christopher Williams

a guest
Jan 19th, 2008
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .section _st1,"rx"
  2. vectors_table:
  3.     .long   0x4c00          | 00 Stack Ptr
  4.     .long   there       | 04 Start of Kernel
  5.     .long   0x08090a0b      | 08 Bus Error
  6.     .long   0x0c0d0e0f      | 0C Address Error
  7.     .long   0x10111213      | 10 Illegal Instruction
  8.     .long   0x14151617      | 14 Divide by zero
  9.     .long   0x18191a1b      | 18 CHK Instruction
  10.     .long   0x1c1d1e1f          | 1C TRAPV
  11.     .long   0x20212223      | 20 Privilege Violation
  12.     .long   0x24252627          | 24 Trace
  13.     .long   0x28292a2b      | 28 Line 1010 Emulator
  14.     .long   0x2c2d2e2f      | 2C Line 1111 Emulator
  15.     .long   0x30313233      | 30 Kernel Version / Name
  16.     .long   0x34353637      | 34
  17.     .long   0x38393a3b      | 38
  18.     .long   0x3c3d3e3f      | 3C
  19.     .long   0x40414243      | 40
  20.     .long   0x44454647      | 44
  21.     .long   0x48494a4b      | 48
  22.     .long   0x4c4d4e4f      | 4C
  23.     .long   0x50515253      | 50
  24.     .long   0x54555657      | 54 Unused
  25.     .long   0x58595a5b      | 58 Unused
  26.     .long   0x5c5d5e5f      | 5C Unused
  27.     .long   0x60616263      | 60 Spurious Interrupt
  28.  
  29. there:
  30.     bra .
  31.  
  32. _ti92plus:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement