source: rtems/c/src/lib/libbsp/m68k/ods68302/timer/timerisr.S @ 08b5f55

4.104.114.84.95
Last change on this file since 08b5f55 was 0162910, checked in by Joel Sherrill <joel.sherrill@…>, on 12/14/98 at 23:15:38

Patch from Ralf Corsepius <corsepiu@…> to rename all
.s files to .S in conformance with GNU conventions. This is a
minor step along the way to supporting automake.

  • Property mode set to 100644
File size: 710 bytes
Line 
1/*
2 * Handle 68302 TIMER2 interrupts.
3 *
4 * All code in this routine is pure overhead which can perturb the
5 * accuracy of RTEMS' timing test suite.
6 *
7 * See also:    Read_timer()
8 *
9 * To reduce overhead this is best to be the "rawest" hardware interupt
10 * handler you can write.  This should be the only interrupt which can
11 * occur during the measured time period.
12 *
13 * An external counter, Timer_interrupts, is incremented.
14 *
15 *  $Id$
16 */
17
18#include "asm.h"
19
20BEGIN_CODE
21        PUBLIC(timerisr)
22SYM(timerisr):
23        move.w  #0x0040,SYM(m302)+2072  | clear interrupt in-service bit
24        move.b  #3,SYM(m302)+2137       | clear timer interrupt event register
25        addq.l  #1,SYM(Timer_interrupts) | increment timer value
26        rte
27END_CODE
28END
Note: See TracBrowser for help on using the repository browser.