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
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
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
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