Re: [fpc-devel] arm-wince step1

2005-08-25 Thread Yury Sidorov
From: "Florian Klaempfl" <[EMAIL PROTECTED]> i386-wince emulator can be obtained by many ways (legal), Well, I consider an i386-wince emulator as rather useless for porting a compiler and base rtl to arm-wince ;) New WinCE emulator which emulates ARM CPU can be downloaded from MS site. It i

Re: [fpc-devel] arm-wince step1

2005-08-24 Thread Florian Klaempfl
Oro06 wrote: > Florian Klaempfl a écrit : > >>Probably some bug in the error handling. FPC_IOCHECK checks the result of the >>write so that error location is quite logical. >> > > i just tried the same prog targetting i386-wince4.2 (emulator) > compiling give this warning : > cannot find entry

Re: [fpc-devel] arm-wince step1

2005-08-24 Thread Oro06
Florian Klaempfl a écrit : Probably some bug in the error handling. FPC_IOCHECK checks the result of the write so that error location is quite logical. i just tried the same prog targetting i386-wince4.2 (emulator) compiling give this warning : cannot find entry symbol __WinMainCRTStartu

Re: [fpc-devel] arm-wince step1

2005-08-08 Thread Yury Sidorov
Hi, Writeln to console does not work currently. Writeln to file works (at least it worked for me). Yury Sidorov. - Original Message - From: "Oro06" <[EMAIL PROTECTED]> To: Sent: Monday, August 08, 2005 5:39 PM Subject: [fpc-devel] arm-wince step1 Hi, the good new

Re: [fpc-devel] arm-wince step1

2005-08-08 Thread Florian Klaempfl
Oro06 wrote: > Hi, > > the good new is the following prog RUN on arm-wince-pda : > > var T: text; > begin > assign(T,'\toto.pas'); > rewrite(T); > close(T); > end. > > -> create the empty file as expected, with no error :) > > the bad news is with writeln, every time i try to use it to writ

[fpc-devel] arm-wince step1

2005-08-08 Thread Oro06
Hi, the good new is the following prog RUN on arm-wince-pda : var T: text; begin assign(T,'\toto.pas'); rewrite(T); close(T); end. -> create the empty file as expected, with no error :) the bad news is with writeln, every time i try to use it to write in the file or even in the std output