4.104.114.84.95
Last change
on this file since f286330 was
f286330,
checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/02/04 at 11:20:03
|
- timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
|
-
Property mode set to
100644
|
File size:
716 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 <rtems/asm.h> |
---|
19 | |
---|
20 | BEGIN_CODE |
---|
21 | PUBLIC(timerisr) |
---|
22 | SYM(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 |
---|
27 | END_CODE |
---|
28 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.