// ***************** init.h ******************************************
//                 Risc-Dsp runtime library
// 
// This file implements functions for initialization of risc-dsp co-work 
//
// (c) multicore.ru
//
// *******************************************************************
#ifndef _INIT_H_
#define _INIT_H_

//
// setup overlay config
//
void config_overlay(unsigned num, unsigned page_mode);

//
// setup mips cache config
//
int cache_config();

//
// allow interrupts handling from dsp cores in mips
//
void enable_dsp_interrupt();

//
//
//
void init_risc();

#endif