Validity: Rule, Task
From RTE v34.27.14. This keyword allows you to read the BIOS version.
Syntax |
I32 bios_vers |
---|---|
Attributes |
Read only |
The meaning of the bytes is as follows:
Bytes |
Meaning |
---|---|
B3 |
Version |
B2 |
Revision |
W0 |
Build |
This version can also be read via the device commands D VE, WHO or via the shell command SYSINFO.
Example
; I store in the integer variable version_bios ; the value of bios_ver version_bios = bios_vers |
Example
; If I read the value 0x0300000A it means: ; B3 = 0x03 = 3 (Version) ; B2 = 0x00 = 0 (Revision) ; W0 = 0x000A = 10 (Build) ; so the BIOS version is 3.0.10 |