include vmm.inc
mov eax, Default ; default value
mov esi, OFFSET32 Profile ; points to section name
mov edi, OFFSET32 Keyname ; points to entry name
VMMCall Get_Profile_Hex_Int
jc not_found ; carry set if entry not found
jz no_value ; zero set if entry has no value
mov [Value], eax ; entry value
Returns the value of a hexadecimal-number entry in the SYSTEM.INI file. This service is only available during initialization. Uses Flags.
If the carry flag is clear and the zero flag is set, the entry exists but has no corresponding value. If the carry flag is set, the entry does not exist or does not represent a hexadecimal number. In these cases, the EAX register contains the value of the Default parameter.
A valid hexadecimal number consist of any combination of hexadecimal digits (0–9, A-F), and can be terminated with the uppercase or lowercase letter H.
Get_Profile_Boolean, Get_Profile_Decimal_Int, Get_Profile_Fixed_Point