summaryrefslogtreecommitdiff
path: root/include/alu.h
blob: 80a5d73e6612e22b9623e4b3d6dc4cd058c0fb1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __ALU_H__
#define __ALU_H__
#include "types.h"

Uint32 AdditionNonSigne(Uint32 a, Uint32 b);
Uint32 AdditionSigne(Uint32 a, Uint32 b);
Uint32 SoustractionNonSigne(Uint32 a, Uint32 b);
Uint32 SoustractionSigne(Uint32 a, Uint32 b);
Uint32 MultiplicationNonSigne(Uint32 a, Uint32 b);
Uint32 MultiplicationSigne(Uint32 a, Uint32 b);
Uint32 DivisionNonSigne(Uint32 a, Uint32 b);
Uint32 DivisionSigne(Uint32 a, Uint32 b);
Uint32 AND(Uint32 a, Uint32 b);
Uint32 OR(Uint32 a, Uint32 b);
Uint32 SHL(Uint32 a);
Uint32 SHR(Uint32 a);

#endif