| [7] | 1 | /* |
|---|
| 2 | * $Id$ |
|---|
| 3 | */ |
|---|
| 4 | |
|---|
| 5 | /* |
|---|
| 6 | * ¥¿¥€¥Þ¥É¥é¥€¥Ð¡Ê¥À¥ß¡Œ¥¿¡Œ¥²¥Ã¥ÈÍѡˀΥ³¥ó¥Õ¥£¥®¥å¥ì¡Œ¥·¥ç¥ó¥Õ¥¡¥€¥ë |
|---|
| 7 | */ |
|---|
| 8 | |
|---|
| 9 | #include "target_timer.h" |
|---|
| 10 | ATT_INI({ TA_NULL, 0, target_timer_initialize }); |
|---|
| 11 | ATT_TER({ TA_NULL, 0, target_timer_terminate }); |
|---|
| 12 | CFG_INT(INTNO_TIMER, { TA_ENAINT | INTATR_TIMER, INTPRI_TIMER }); |
|---|
| 13 | DEF_INH(INHNO_TIMER, { TA_NULL, target_timer_handler }); |
|---|
| 14 | |
|---|
| 15 | #ifdef TOPPERS_SUPPORT_OVRHDR |
|---|
| 16 | ATT_INI({ TA_NULL, 0, target_ovrtimer_initialize }); |
|---|
| 17 | ATT_TER({ TA_NULL, 0, target_ovrtimer_terminate }); |
|---|
| 18 | #endif /* TOPPERS_SUPPORT_OVRHDR */ |
|---|