home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************
- * spr_int8.c
- *
- * New timer interrupt service routine.
- * MUST BE COMPILED WITHOUT STACK CHECKS AND REGISTER VARIABLES
- **********************************************************************
- This file is part of
-
- STK -- The sprite toolkit -- version 1.1
-
- Copyright (C) Jari Karjala 1991
-
- The sprite toolkit (STK) is a FreeWare toolkit for creating high
- resolution sprite graphics with PCompatible hardware. This toolkit
- is provided as is without any warranty or such thing. See the file
- COPYING for further information.
-
- **********************************************************************/
-
- #include "sprP.h"
-
- /** Vector to the old keyboard interrupt handler **/
- void interrupt (*spr_old_int8)(void);
-
- /** The new timer interrupt handler **/
- void interrupt spr_int8(void)
- {
- spr_need_delay = 0; /** no need to delay any more **/
- spr_old_int8();
- }
-