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

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

Added sim68000 BSP for the BSVC simulator. This BSP includes the
alias simcpu32 that supports the CPU32 simulator in BSVC. At this
point, it is still under development.

  • Property mode set to 100644
File size: 492 bytes
Line 
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
15#define Clock_driver_support_initialize_hardware() \
16  } while (0);
17
18#define Clock_driver_support_at_tick() \
19  Clock_driver_support_initialize_hardware()
20
21#define Clock_driver_support_shutdown_hardware()
22
23#include "../../../shared/clockdrv_shell.c"
Note: See TracBrowser for help on using the repository browser.