Cannot use enigma with Delphi 64 bit
Posted: Sun Aug 17, 2014 4:07 pm
Hi,
First, the easy part
In enigma_ide.pas you need to change
to
Second. Markers don't work with 64bit Delphi (I'm using xe6).
Code below cannot be compiled, as Delphi x64 does not support asm in a non-asm procedures
I get
I'm evaluating the demo version of Enigma.
Erix
First, the easy part
In enigma_ide.pas you need to change
Code: Select all
enigma_api_dll_name = 'enigma_ide.dll';Code: Select all
enigma_api_dll_name = 'enigma_ide64.dll';Code below cannot be compiled, as Delphi x64 does not support asm in a non-asm procedures
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
{$I C:\enigma\x64\EnigmaSDK\Delphi\vm_begin.inc}
Self.Caption := 'Hello';
{$I C:\enigma\x64\EnigmaSDK\Delphi\vm_end.inc}
end;
.[dcc64 Error] vm_begin.inc(1): E1025 Unsupported language feature: 'ASM'
I'm evaluating the demo version of Enigma.
Erix