forked from KolibriOS/kolibrios
20 lines
212 B
C
20 lines
212 B
C
|
#ifndef _PXA255_DSP_H_
|
||
|
#define _PXA255_DSP_H_
|
||
|
|
||
|
#include "mem.h"
|
||
|
#include "cpu.h"
|
||
|
|
||
|
|
||
|
|
||
|
typedef struct{
|
||
|
|
||
|
UInt64 acc0;
|
||
|
|
||
|
}Pxa255dsp;
|
||
|
|
||
|
|
||
|
|
||
|
Boolean pxa255dspInit(Pxa255dsp* dsp, ArmCpu* cpu);
|
||
|
|
||
|
|
||
|
#endif
|