├── .gitignore ├── BeaEngine.c ├── CodMake.aps ├── CodMake.cpp ├── CodMake.h ├── CodMake.rc ├── CodMake.sln ├── CodMake.vcxproj ├── CodMake.vcxproj.filters ├── CodMake.vcxproj.user ├── CodMakeDlg.cpp ├── CodMakeDlg.h ├── Elib.h ├── Includes ├── BeaEngineVersion.c ├── Routines_Disasm.c ├── Routines_ModRM.c ├── instr_set │ ├── Data_opcode.h │ ├── opcodes_AES.c │ ├── opcodes_A_M.c │ ├── opcodes_CLMUL.c │ ├── opcodes_FPU.c │ ├── opcodes_Grp1.c │ ├── opcodes_Grp12.c │ ├── opcodes_Grp13.c │ ├── opcodes_Grp14.c │ ├── opcodes_Grp15.c │ ├── opcodes_Grp16.c │ ├── opcodes_Grp17.c │ ├── opcodes_Grp2.c │ ├── opcodes_Grp3.c │ ├── opcodes_Grp4.c │ ├── opcodes_Grp5.c │ ├── opcodes_Grp6.c │ ├── opcodes_Grp7.c │ ├── opcodes_Grp8.c │ ├── opcodes_Grp9.c │ ├── opcodes_MMX.c │ ├── opcodes_N_Z.c │ ├── opcodes_SSE.c │ └── opcodes_prefixes.c ├── internal_datas.h └── protos.h ├── LICENSE ├── README.md ├── ReadMe.txt ├── Resource.h ├── beaengine ├── basic_types.h ├── beaengine.h ├── export.h └── macros.h ├── res ├── CodMake.ico └── CodMake.rc2 ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── update.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/.gitignore -------------------------------------------------------------------------------- /BeaEngine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/BeaEngine.c -------------------------------------------------------------------------------- /CodMake.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/CodMake.aps -------------------------------------------------------------------------------- /CodMake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/CodMake.cpp -------------------------------------------------------------------------------- /CodMake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/CodMake.h -------------------------------------------------------------------------------- /CodMake.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/CodMake.rc -------------------------------------------------------------------------------- /CodMake.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/CodMake.sln -------------------------------------------------------------------------------- /CodMake.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/CodMake.vcxproj -------------------------------------------------------------------------------- /CodMake.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/CodMake.vcxproj.filters -------------------------------------------------------------------------------- /CodMake.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/CodMake.vcxproj.user -------------------------------------------------------------------------------- /CodMakeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/CodMakeDlg.cpp -------------------------------------------------------------------------------- /CodMakeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/CodMakeDlg.h -------------------------------------------------------------------------------- /Elib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Elib.h -------------------------------------------------------------------------------- /Includes/BeaEngineVersion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/BeaEngineVersion.c -------------------------------------------------------------------------------- /Includes/Routines_Disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/Routines_Disasm.c -------------------------------------------------------------------------------- /Includes/Routines_ModRM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/Routines_ModRM.c -------------------------------------------------------------------------------- /Includes/instr_set/Data_opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/Data_opcode.h -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_AES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_AES.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_A_M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_A_M.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_CLMUL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_CLMUL.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_FPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_FPU.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp1.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp12.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp13.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp14.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp15.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp16.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp17.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp2.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp3.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp4.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp5.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp6.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp7.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp8.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_Grp9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_Grp9.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_MMX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_MMX.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_N_Z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_N_Z.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_SSE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_SSE.c -------------------------------------------------------------------------------- /Includes/instr_set/opcodes_prefixes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/instr_set/opcodes_prefixes.c -------------------------------------------------------------------------------- /Includes/internal_datas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/internal_datas.h -------------------------------------------------------------------------------- /Includes/protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Includes/protos.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CodeMake 2 | 开发环境 VS2015 3 | 4 | 本工具用来批量生成易语言的支持库esig文件。 5 | -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/Resource.h -------------------------------------------------------------------------------- /beaengine/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/beaengine/basic_types.h -------------------------------------------------------------------------------- /beaengine/beaengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/beaengine/beaengine.h -------------------------------------------------------------------------------- /beaengine/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/beaengine/export.h -------------------------------------------------------------------------------- /beaengine/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/beaengine/macros.h -------------------------------------------------------------------------------- /res/CodMake.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/res/CodMake.ico -------------------------------------------------------------------------------- /res/CodMake.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/res/CodMake.rc2 -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/targetver.h -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjqisba/CodeMake/HEAD/update.sh --------------------------------------------------------------------------------