home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / program / language / motasm / examples_hc11_as11_VECTORS < prev    next >
Encoding:
Text File  |  1995-05-13  |  828 b   |  19 lines

  1. *VECTORS.AS
  2. *******************************************************************************
  3. *                                                                             *
  4. * The following definitions constitute the interrupt vector table. The user   *
  5. * may modify this as necessary to fit his application. DO NOT CHANGE THE      *
  6. * BASIC DEFINITIONS AS SHOWN BELOW.                                           *
  7. *                                                                             *
  8. *******************************************************************************
  9.  
  10.         ORG    $FFF0                    
  11.         FDB    rtiisr              RTI Vector
  12.  
  13.         ORG    $FFF6
  14.         FDB    mcxsrv              SWI Vector to enter MCX11 ESRs
  15.  
  16.         ORG    $FFFE
  17.         FDB    mcxinit             Power-On/Reset Vector
  18.  
  19.