Commit 8d2d40bb authored by Vladimir Malenovsky's avatar Vladimir Malenovsky
Browse files

modifications for the WMC tool

parent 38865aaa
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -125,7 +125,6 @@
    <ClCompile Include="..\lib_com\ari.c" />
    <ClCompile Include="..\lib_com\arith_coder.c" />
    <ClCompile Include="..\lib_com\ari_hm.c" />
    <ClCompile Include="..\lib_com\basop_mpy.c" />
    <ClCompile Include="..\lib_com\basop_util.c" />
    <ClCompile Include="..\lib_com\bitallocsum_fx.c" />
    <ClCompile Include="..\lib_com\bitalloc_fx.c" />
+36 −32
Original line number Diff line number Diff line
@@ -10,6 +10,42 @@
      <Platform>Win32</Platform>
    </ProjectConfiguration>
  </ItemGroup>
  <ItemGroup>
    <ClCompile Include="..\basic_math\log2.c" />
    <ClCompile Include="..\basic_math\math_op.c" />
    <ClCompile Include="..\basic_math\oper_32b.c" />
    <ClCompile Include="..\basic_math\rom_basic_math.c" />
    <ClCompile Include="..\basic_op\basop32.c" />
    <ClCompile Include="..\basic_op\complex_basop.c" />
    <ClCompile Include="..\basic_op\control.c" />
    <ClCompile Include="..\basic_op\count.c" />
    <ClCompile Include="..\basic_op\enh1632.c" />
    <ClCompile Include="..\basic_op\enh32.c" />
    <ClCompile Include="..\basic_op\enh40.c" />
    <ClCompile Include="..\basic_op\enh64.c" />
    <ClCompile Include="..\basic_op\enhUL32.c" />
  </ItemGroup>
  <ItemGroup>
    <ClInclude Include="..\basic_math\log2.h" />
    <ClInclude Include="..\basic_math\math_32.h" />
    <ClInclude Include="..\basic_math\math_op.h" />
    <ClInclude Include="..\basic_math\oper_32b.h" />
    <ClInclude Include="..\basic_math\rom_basic_math.h" />
    <ClInclude Include="..\basic_op\basop32.h" />
    <ClInclude Include="..\basic_op\complex_basop.h" />
    <ClInclude Include="..\basic_op\control.h" />
    <ClInclude Include="..\basic_op\count.h" />
    <ClInclude Include="..\basic_op\enh1632.h" />
    <ClInclude Include="..\basic_op\enh32.h" />
    <ClInclude Include="..\basic_op\enh40.h" />
    <ClInclude Include="..\basic_op\enh64.h" />
    <ClInclude Include="..\basic_op\enhUL32.h" />
    <ClInclude Include="..\basic_op\move.h" />
    <ClInclude Include="..\basic_op\patch.h" />
    <ClInclude Include="..\basic_op\stl.h" />
    <ClInclude Include="..\basic_op\typedef.h" />
    <ClInclude Include="..\basic_op\typedefs.h" />
  </ItemGroup>
  <PropertyGroup Label="Globals">
    <ProjectGuid>{52EF5F7B-DF20-4BA8-96E0-DCB4A9B3D200}</ProjectGuid>
    <RootNamespace>lib_fx</RootNamespace>
@@ -79,38 +115,6 @@
      <CompileAs>Default</CompileAs>
    </ClCompile>
  </ItemDefinitionGroup>
  <ItemGroup>
    <ClCompile Include="..\basic_math\log2.c" />
    <ClCompile Include="..\basic_math\math_32.c" />
    <ClCompile Include="..\basic_math\math_op.c" />
    <ClCompile Include="..\basic_math\oper_32b.c" />
    <ClCompile Include="..\basic_math\rom_basic_math.c" />
    <ClCompile Include="..\basic_op\basop32.c" />
    <ClCompile Include="..\basic_op\control.c" />
    <ClCompile Include="..\basic_op\count.c" />
    <ClCompile Include="..\basic_op\enh1632.c" />
    <ClCompile Include="..\basic_op\enh40.c" />
    <ClCompile Include="..\basic_op\enhUL32.c" />
  </ItemGroup>
  <ItemGroup>
    <ClInclude Include="..\basic_math\log2.h" />
    <ClInclude Include="..\basic_math\math_32.h" />
    <ClInclude Include="..\basic_math\math_op.h" />
    <ClInclude Include="..\basic_math\oper_32b.h" />
    <ClInclude Include="..\basic_math\rom_basic_math.h" />
    <ClInclude Include="..\basic_op\basic_op40.h" />
    <ClInclude Include="..\basic_op\basop32.h" />
    <ClInclude Include="..\basic_op\control.h" />
    <ClInclude Include="..\basic_op\count.h" />
    <ClInclude Include="..\basic_op\enh1632.h" />
    <ClInclude Include="..\basic_op\enh40.h" />
    <ClInclude Include="..\basic_op\enhUL32.h" />
    <ClInclude Include="..\basic_op\move.h" />
    <ClInclude Include="..\basic_op\patch.h" />
    <ClInclude Include="..\basic_op\stl.h" />
    <ClInclude Include="..\basic_op\typedef.h" />
    <ClInclude Include="..\basic_op\typedefs.h" />
  </ItemGroup>
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  <ImportGroup Label="ExtensionTargets">
  </ImportGroup>
+4 −2
Original line number Diff line number Diff line
@@ -11,11 +11,13 @@
*                         INCLUDE FILES
********************************************************************************
*/

#include <assert.h>
#include "options.h"
#include "wmc_auto.h"
#include "stl.h"
#include "math_op.h"
#include <assert.h>
#include "rom_basic_math.h"
#include "options.h"

#define LW_SIGN (Word32)0x80000000       /* sign bit */
#define LW_MIN (Word32)0x80000000
+4 −2
Original line number Diff line number Diff line
@@ -16,12 +16,14 @@
 |___________________________________________________________________________|
*/

#include <stdlib.h>
#include <stdio.h>
#include "options.h"
#include "wmc_auto.h"
#include "stl.h"
#include "math_op.h"
#include "rom_basic_math.h"

#include <stdlib.h>
#include <stdio.h>

/*___________________________________________________________________________
 |                                                                           |
+2 −0
Original line number Diff line number Diff line
@@ -22,6 +22,8 @@
 *****************************************************************************
*/

#include "options.h"
#include "wmc_auto.h"
#include "stl.h"
#include "math_op.h"

Loading