// ***************** dsp_risc_caller.h *********************************
//                 Risc-Dsp runtime library
// 
// This file implements interface for dsp threads
//
// (c) multicore.ru
//
// *********************************************************************

#ifndef _DSP_RICSK_CALLER_H_
#define _DSP_RICSK_CALLER_H_

//
// 
//
unsigned long long * DSP_Join(int NUM);

//
//
//
int DSP_Status(int NUM);

//
//
//
void DSP_Async(int NUM);

//
//
//
int __callfunction_byID(int numDSP, int idFunc, char* param, unsigned page_size);

//
//
//
void __interrupt_dsp_handler__();

#endif