Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ********************************************************************************
- * Project: Generations Lost *
- * Module: vectors.s *
- * Creation Date: July 1993 *
- * Author: R. Frericks Jr. *
- * Development System: Sierra Systems 68000 Macro Assembler 3.0 *
- * *
- * Copyright (c)1993 Tengen Inc., Pacific SoftScape Inc. *
- ********************************************************************************
- nolist
- include genesis.i
- list
- INITSTACK equ $ff8000 ; Inital system stack pointer
- *
- * First $100 bytes of the 68000 ROM space.
- *
- dc.l INITSTACK ; Reset: Initial stack pointer
- dc.l ICD_BLK4 ; Reset: Initial program counter
- dc.l _BusError ; Bus Error exception
- dc.l _AddressError ; Addr Error execption
- dc.l _StandardError ; Illegal Instruction execption
- dc.l _StandardError ; Zero Divide execption
- dcb.l 25-6+1,_StandardError ; Autovectors 6 thru 25
- dc.l _ExternalInt ; Level 2 Interrupt
- dc.l _StandardError ; Level 3 Interrupt
- dc.l _HorizontalInt ; Level 4 Interrupt
- dc.l _StandardError ; Level 5 Interrupt
- dc.l _VerticalInt ; Level 6 Interrupt
- dc.l _StandardError ; Level 7 Interrupt
- dc.l _NoVRAMerror ; Trap 0
- dc.l _NoSATerror ; Trap 1
- dc.l _NoObjectsError ; Trap 2
- dcb.l 63-35+1,_StandardError ; Autovectors 35 thru 63
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement