summaryrefslogtreecommitdiff
path: root/src/gp32_func.h
blob: 8ee461da9ae73f89c3cc0bcbbb351dd96afe6ef1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __gp32_func_h__
#define __gp32_func_h__

extern "C" int funcSADDMULT1616(int a,int b,int c,int d);

#define SADDMULT1616(res,a,b,c,d) {\
	res=funcSADDMULT1616(a,b,c,d);\
	}
#define SMULT1616(res,a,b) {\
	res=funcSADDMULT1616(a,b,0,0);\
	} 

#endif