Hi Kyle,
On Jan 7, 6:21 pm, "Kyle" <[email protected]> wrote:
> Greets,
>
> ..................................
>
> It does have single & double precision real which have been requested.
>
Yes, and look also at this piece of code (the feature was added in
couple of days, to make my code work -- quite remarkable, and it was
not the only feature which Philippe Paternotte added to his language):
The code used to translate the Joep library:
///////////////////////////////////////////////////////////////////////
{$if declared(OPTION_REG)} // for PIC16 MCUs with an accessible
OPTION_REG
type
// Fake a T0CON into OPTION_REG
tT0CON = record
T0PS : BITS[3]; // Note : 3 is the number of bits
PSA : boolean;
T0SE : Boolean;
T0CS : Boolean;
INTEGD : Boolean;
NOT_RAB_PU : Boolean;
end;
var
T0CON: volatile tT0CON absolute OPTION_REG; // Define a T0CON for
PIC16
{$ifend}
/////////////////////////////////////////////////////////////////////////////////
Look at T0CON array variable declared as absolute and I think you said
is not possible in JAL if I am not wrong ...
And also pointers...
--
You received this message because you are subscribed to the Google Groups
"jallib" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/jallib?hl=en.