source: rtems/c/src/lib/libbsp/i960/i960sim/clock/clockdrv.c @ 9065de85

4.104.114.84.95
Last change on this file since 9065de85 was 9065de85, checked in by Joel Sherrill <joel.sherrill@…>, on 07/10/00 at 18:42:16

Added dummy clock driver.

  • Property mode set to 100644
File size: 455 bytes
Line 
1/*
2 *  Instantiate the clock driver shell.
3 *
4 *  Since there is no clock source on the simulator, all we do is
5 *  make sure it will build.
6 *
7 *  $Id$
8 */
9
10#define CLOCK_VECTOR 0
11
12#define Clock_driver_support_at_tick()
13
14#define Clock_driver_support_install_isr( _new, _old ) \
15  do { _old = 0; } while(0)
16
17
18#define 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.