URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [shared/] [clock_driver_stub.c] - Rev 1026
Go to most recent revision | 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. * * clock_driver_stub.c,v 1.1 2000/11/13 14:59:22 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 "clockdrv_shell.c"
Go to most recent revision | Compare with Previous | Blame | View Log