Re: [fpc-pascal] Quick question

2023-09-16 Thread Jonas Maebe via fpc-pascal
On 15/09/2023 18:02, Paul Renaud via fpc-pascal wrote: A quick question about FreePascal for Arm32. Does the floating point code generated by the compiler depend on the vector length being set at zero? If I were to change the vector length that the VFP processes to 3 which would enable using

[fpc-pascal] Quick question

2023-09-15 Thread Paul Renaud via fpc-pascal
A quick question about FreePascal for Arm32. Does the floating point code generated by the compiler depend on the vector length being set at zero? If I were to change the vector length that the VFP processes to 3 which would enable using vectors of 4 elements,would that  effect the code the compi

Re: [fpc-pascal]quick question

2004-03-04 Thread James Mills
On Thu, Mar 04, 2004 at 11:39:46PM -0500, r.w.h wrote: > begin > if exists ('bot.log') > then begin > assign(ftb,'bot.log'); > append(ftb); > writeln(ftb,'bot log created'); // find away to enter time , date > close(ftb); > end > else > begin > assign(ftb,'bot.log'); > reset(ftb); > writeln(ftb,'th

[fpc-pascal]quick question

2004-03-04 Thread r.w.h
begin if exists ('bot.log') then begin assign(ftb,'bot.log'); append(ftb); writeln(ftb,'bot log created'); // find away to enter time , date close(ftb); end else begin assign(ftb,'bot.log'); reset(ftb); writeln(ftb,'the botlog was created'); close(ftb); end; end; whats wrong with the code. i get t