source: rtems/c/src/lib/libbsp/m68k/sim68000/clock/clockdrv.c @ 9bb1a93

4.104.114.84.95
Last change on this file since 9bb1a93 was 9bb1a93, checked in by Joel Sherrill <joel.sherrill@…>, on 08/01/00 at 20:51:34

Compiles now.

  • Property mode set to 100644
File size: 475 bytes
RevLine 
[b812f84]1/*
2 *  Instantiate the clock driver shell.
3 *
4 *  $Id$
5 */
6
7#include <bsp.h>
8
9#define CLOCK_VECTOR 0
10
11#define Clock_driver_support_install_isr( _new, _old )  \
12  do { _old = (rtems_isr_entry) set_vector( _new, CLOCK_VECTOR, 1 ); } while(0)
13
14
[9bb1a93]15#define Clock_driver_support_initialize_hardware()
[b812f84]16
17#define Clock_driver_support_at_tick() \
18  Clock_driver_support_initialize_hardware()
19
20#define Clock_driver_support_shutdown_hardware()
21
22#include "../../../shared/clockdrv_shell.c"
Note: See TracBrowser for help on using the repository browser.