home *** CD-ROM | disk | FTP | other *** search
/ Amiga Times / AmigaTimes.iso / demos / programme / WarpUPV3 / WarpUP-WarpOS / hwdrivers / Template / WarpHW_PPC.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-06  |  498 b   |  25 lines

  1. /*
  2.  *
  3.  *      PowerPC part of the WarpUp hardware driver
  4.  *      Be sure to read the instructions in the documentation before
  5.  *      writing the code!
  6.  *
  7.  */
  8.  
  9. extern void syncPPC(void);       /*ASM source which performs an ISYNC/SYNC pair */
  10.  
  11. /*
  12.  *
  13.  *      ConfirmInterrupt
  14.  *      Confirms the PPC Interrupt. INT signal should drive to
  15.  *      inactive after confirmation
  16.  *
  17.  */
  18.  
  19. void __saveds ConfirmInterrupt(void)
  20. {
  21. /* drive INT signal to inactive state to confirm interrupt processing */
  22.  
  23. }
  24.  
  25.