Re: [fpc-pascal] QWord/UInt64 and Range Check Errors

2009-06-25 Thread m2
Jonas Maebe a écrit : > > On 25 Jun 2009, at 20:58, Inoussa OUEDRAOGO wrote: > >> 2009/6/25 Jonas Maebe : >>> >>> It's equally accurate. A hex number does not contain any sign >>> information, >>> so both interpretations are valid. >> >> so it could be parsed as QWord accurately and assigned to a

Re: [fpc-pascal] ASM code conversion from Delphi

2009-04-29 Thread m2
Jonas Maebe a écrit : On 29 Apr 2009, at 14:23, Roland Turcan wrote: Delphi: mov DWord ptr TCPUIDData (edi).r_eax,eax By using this: mov DWord ptr TCPUIDData ([edi]).r_eax,eax or this mov [edi+TCPUIDData.r_eax], eax that also works with both Delphi and FPC. mm http://ww