X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_sp%2FASM.h;h=a149c808eef40592e1d22611a72b10716d0cef08;hb=310781167f731177d6d46b15093dc32606eeac4e;hp=f1e4e4ac7da24143508cb2c34c4c162cd30fd453;hpb=9401cea7061b513534a3244edd8944e852a28c7b;p=rocksndiamonds.git diff --git a/src/game_sp/ASM.h b/src/game_sp/ASM.h index f1e4e4ac..a149c808 100644 --- a/src/game_sp/ASM.h +++ b/src/game_sp/ASM.h @@ -5,25 +5,14 @@ #ifndef ASM_H #define ASM_H -#include "vb_types.h" -#include "vb_defs.h" -#include "vb_vars.h" -#include "vb_lib.h" - #include "global.h" -#define ByteMask (0xFF) - -extern void Mov(int *Var, int Val); -extern void MovLowByte(int *Var, int Val); -extern void MovHighByte(int *Var, int Val); -extern int LowByte(int Var); -extern int HighByte(int Var); -extern int SgnHighByte(int Var); -extern int SHL(int *Var, int Count); -extern int SHR(int *Var, int Count); -extern int ByteToInt(byte B); -extern byte IntToByte(int i); +extern void MovLowByte(int *, int); +extern void MovHighByte(int *, int); +extern int LowByte(int); +extern int HighByte(int); +extern int SgnHighByte(int); +extern int ByteToInt(byte); #endif /* ASM_H */