/* You may modify this file as desired. UCI contact: Steve Pier University of California, Irvine pier@nucleus.ps.uci.edu 714-824-3162 */ /* hos_init.c: host-specific functions for use with dsp_init.c Include any host-specific functions in this file. E.g., log_err() and log_boot() can be replaced with host-specific functions with different names. Then change the LOG_ERR() and LOG_BOOT() macros in hostspec.h to call the host-specific functions. See init_dsp.c for global variables available to host-specific functions in this file. */ /* unsigned long simp_clock2() simple clock: one tick per call { static unsigned long clock_tick = 0; return( clock_tick ++ ); } */