On Wed, 2009-09-02 at 20:34 +0200, Olaf Ziebell wrote:
PROGRAM LSB;
function least_significant_byteof (num: integer): byte; BEGIN least_significant_byteof := num AND $FF; END; { least_significant_byteof }
BEGIN WriteLn(least_significant_byteof($1FF)); END.
Thanks. And thanks to all others who responded. I had hoped it would be something straightforward, and I am pleased to see that it is!