title: "lo" description: TRSE built-in method (from IDE help)
lo
Systems: PX86, M1ARM
Parameters: a
[byte] = Lo( [address] );
- [address] - address to query
Description
Gets the low byte of an address or zero page pointer.
Example
var
data : incbin("myData.bin", $2050);
i:byte;
zp: pointer;
begin
zp:=data;
i:=hi(data); // will be $20
i:=hi(zp); // will be $20
i:=lo(data); // will be $50
i:=lo(zp); // will be $50
end;