Advertisement
Nightseeker

Sega_Channel_Demo_Cart_1-GenLost-vectors.s

Jun 9th, 2020
2,255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ********************************************************************************
  2. *              Project: Generations Lost                                       *
  3. *               Module: vectors.s                                              *
  4. *        Creation Date: July 1993                                              *
  5. *               Author: R. Frericks Jr.                                        *
  6. *   Development System: Sierra Systems 68000 Macro Assembler 3.0               *
  7. *                                                                              *
  8. *   Copyright (c)1993 Tengen Inc., Pacific SoftScape Inc.                      *
  9. ********************************************************************************
  10.                 nolist
  11.                 include genesis.i
  12.                 list
  13.  
  14. INITSTACK       equ     $ff8000                 ; Inital system stack pointer
  15.  
  16. *
  17. * First $100 bytes of the 68000 ROM space.
  18. *
  19.                 dc.l    INITSTACK               ; Reset: Initial stack pointer
  20.                 dc.l    ICD_BLK4                ; Reset: Initial program counter
  21.                 dc.l    _BusError               ; Bus Error exception
  22.                 dc.l    _AddressError           ; Addr Error execption
  23.                 dc.l    _StandardError          ; Illegal Instruction execption
  24.                 dc.l    _StandardError          ; Zero Divide execption
  25.                 dcb.l   25-6+1,_StandardError   ; Autovectors 6 thru 25
  26.                 dc.l    _ExternalInt            ; Level 2 Interrupt
  27.                 dc.l    _StandardError          ; Level 3 Interrupt
  28.                 dc.l    _HorizontalInt          ; Level 4 Interrupt
  29.                 dc.l    _StandardError          ; Level 5 Interrupt
  30.                 dc.l    _VerticalInt            ; Level 6 Interrupt
  31.                 dc.l    _StandardError          ; Level 7 Interrupt
  32.                 dc.l    _NoVRAMerror            ; Trap 0
  33.                 dc.l    _NoSATerror             ; Trap 1
  34.                 dc.l    _NoObjectsError         ; Trap 2
  35.                 dcb.l   63-35+1,_StandardError  ; Autovectors 35 thru 63
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement