inst68.hGo to the documentation of this file.00001
00012
00013
00014 #ifndef _INST68_H_
00015 #define _INST68_H_
00016
00017 #include "emu68/type68.h"
00018
00019 #ifdef __cplusplus
00020 extern "C" {
00021 #endif
00022
00023
00043 s32 add68(s32 a, s32 b, s32 c);
00044
00046 s32 sub68(s32 a, s32 b, s32 c);
00047
00049 s32 muls68(s32 a, s32 b);
00050
00052 s32 mulu68(u32 a, u32 b);
00053
00055 s32 divs68(s32 a, s32 b);
00056
00058 s32 divu68(u32 a, u32 b);
00059
00068 s32 and68(u32 a, u32 b);
00069
00071 s32 orr68(u32 a, u32 b);
00072
00074 s32 eor68(u32 a, u32 b);
00075
00077 s32 not68(s32 s);
00078
00085 #ifdef __cplusplus
00086 }
00087 #endif
00088
00089 #endif
|