User manual
156
mikoPascal PRO for PIC32
MikroElektronika
Prototype
function DoGetDateTime() : string;
Description Use the GetDateTime() to get date and time of compilation as string in your code.
Parameters None.
Returns String with date and time when this routine is compiled.
Requires Nothing.
Example
str := GetDateTime();
Notes None.
Prototype
function GetVersion() : string;
Description Use the GetVersion(); to get the current version of compiler.
Parameters None.
Returns String with current compiler version.
Requires Nothing.
Example
str := GetVersion(); // for example, str will take the value of
‘8.2.1.6’’
Notes None.
Prototype
function KVA0_TO_KVA1(Address: dword) : dword;
Description Function converts virtual address from KSEG0 to the virtual address in the KSEG1.
Parameters Desired Virtual address in the KSEG0.
Returns Virtual address in the KSEG1.
Requires Nothing.
Example
address := KVA0_TO_KVA1(0x9FC00000);
Notes None.
DoGetDateTime
GetVersion
KVA0_TO_KVA1