URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [sh/] [shsim/] [clock/] [clockdrv.c] - Rev 1765
Compare with Previous | Blame | View Log
/* * Instantiate the clock driver shell. * * Since there is no clock source on the simulator, all we do is * make sure it will build. * * clockdrv.c,v 1.1 2000/11/27 16:00:50 joel Exp */ #define CLOCK_VECTOR 0 #define Clock_driver_support_at_tick() #define Clock_driver_support_install_isr( _new, _old ) \ do { _old = 0; } while(0) #define Clock_driver_support_initialize_hardware() #define Clock_driver_support_shutdown_hardware() #include "../../../shared/clockdrv_shell.c"