source: rtems/c/src/lib/libbsp/sh/shsim/clock/clockdrv.c @ 86ec6ed

4.104.114.84.95
Last change on this file since 86ec6ed was 86ec6ed, checked in by Joel Sherrill <joel.sherrill@…>, on 11/27/00 at 16:00:50

2000-11-27 Joel Sherrill <joel@…>

  • The shsim is for the SH simulator in gdb. It should be able to be used with multiple SH CPU models.
  • .cvsignore, ChangeLog?, Makefile.am, README, bsp_specs, configure.in, clock/.cvsignore, clock/Makefile.am, clock/clockdrv.c, console/.cvsignore, console/Makefile.am, console/console-io.c, console/console-support.S, include/.cvsignore, include/Makefile.am, include/bsp.h, start/.cvsignore, start/Makefile.am, start/regs.S, start/start.S, startup/.cvsignore, startup/Makefile.am, startup/bspstart.c, startup/linkcmds, wrapup/.cvsignore, wrapup/Makefile.am: New files.
  • 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.