BeatriX
BeatriX
you are right, actually, when operand is READ+WRITE, BeaEngine uses WRITE but it is wrong. Work in progress...
fixed in commit fb42d80 ``` from BeaEnginePython import * buffer = bytes.fromhex('480fba2908') instr = Disasm(buffer) instr.read() print(instr.json()) ``` output is: ``` { "repr": "bts qword ptr [rcx], 08h", "category": "GENERAL_PURPOSE_INSTRUCTION",...
Last release 5.3.0 is now available : https://github.com/BeaEngine/beaengine/releases/tag/v5.3.0
Hi, I just succeed in compiling with Visual Studio 2019 version 16.7.5 on Windows 7 (using the gui). Can you tell me what is your version ?
ok. Tested on Windows 10 18363 and no errors for me. Can you give me the error ?
**Another idea:** Try to compile with **PellesC**. Here is a batch example: ``` rem ============== compile.bat ============== set INCLUDE=C:\PellesC\Include\;C:\PellesC\Include\Win\;C:\Users\User\Desktop\beaengine-master\beaengine\include\; set LIB=C:\PellesC\Lib\;C:\PellesC\Lib\Win64\; cd beaengine\src rem BUILD STATIC LIB C:\PellesC\Bin\Pocc /D BEA_ENGINE_STATIC...