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

Re: [fpc-pascal] Apache Modules without LResources

2009-04-29 Thread Giovanni Premuda
Felipe Monteiro de Carvalho wrote: On Mon, Apr 27, 2009 at 9:58 PM, Giovanni Premuda wrote: Is it possible to use fclweb without linking LResources and a lazarus resource file? Why don't you want to have the resource file? Fundamentally because if I could avoid LResources my module

Re: [fpc-pascal] Apache Modules without LResources

2009-04-29 Thread Felipe Monteiro de Carvalho
On Mon, Apr 27, 2009 at 9:58 PM, Giovanni Premuda wrote: > Is it possible to use fclweb without linking LResources and a lazarus > resource file? Why don't you want to have the resource file? -- Felipe Monteiro de Carvalho ___ fpc-pascal maillist -

Re: [fpc-pascal] now i have a very strange behaviour of my arm compiler

2009-04-29 Thread Henry Vermaak
2009/4/29 Benedikt Schindler : > THX ! > > Now all my problems just walked away. > What a bugfix  for the compiler could do :) > > My first test programm is now running without problems on the Openmoko > Freerunner device. good work! see if you can find somewhere on the wiki to put nice photos.

Re: [fpc-pascal] now i have a very strange behaviour of my arm compiler

2009-04-29 Thread Benedikt Schindler
THX ! Now all my problems just walked away. What a bugfix for the compiler could do :) My first test programm is now running without problems on the Openmoko Freerunner device. @all: thx for the helping in the last 3 weeks. Beni Benedikt Schindler schrieb: my last svn update was 13 days a

Re: [fpc-pascal] dcpcrypt 64-bit?

2009-04-29 Thread German Gentile
2009/4/29 Seth Grover > There was a thread back in January about including DCPCrypt in the > FCL. One of the questions that arose was whether it ported to 64-bit > platforms. I didn't see that question ever answered, but yesterday > when I started compiling one of my projects which uses it on a 6

[fpc-pascal] dcpcrypt 64-bit?

2009-04-29 Thread Seth Grover
There was a thread back in January about including DCPCrypt in the FCL. One of the questions that arose was whether it ported to 64-bit platforms. I didn't see that question ever answered, but yesterday when I started compiling one of my projects which uses it on a 64-bit machine there was some cra

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

2009-04-29 Thread Jonas Maebe
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 As far as I can tell from the manuals posted at http://docs.embarcadero.com/products/rad_studio/ , the fact that Delphi accepts yo

[fpc-pascal] ASM code conversion from Delphi

2009-04-29 Thread Roland Turcan
Hello all, How can I write as ASM this assignment which is valid code for Delphi: mov DWord ptr TCPUIDData (edi).r_eax,eax where TCPUIDData is declared as: TYPE TCPUIDData =PACKED RECORD r_eax :CARDINAL; r_ebx

Re: [fpc-pascal] Apache Modules without LResources

2009-04-29 Thread Joost van der Sluis
Op dinsdag 28-04-2009 om 23:21 uur [tijdzone +0200], schreef Giovanni Premuda: > Joost van der Sluis wrote: > > Op dinsdag 28-04-2009 om 02:58 uur [tijdzone +0200], schreef Giovanni > > Premuda: > > > >> Is it possible to use fclweb without linking LResources and a lazarus > >> resource file? >