CT_BIOSDATE

 BIOSDATE()
 Determines the system BIOS date
------------------------------------------------------------------------------
 Syntax

     BIOSDATE() --> dBIOSdate

 Returns

     BIOSDATE() returns the ROM BIOS date.

 Description

     As a rule, all industry-standard PC's insert a generated date at a
     particular memory location in the BIOS.  Based on this date,
     incompatibilities known to exist up to a particular release can be
     acknowledged.  The function returns a date-type value and spares you an
     elaborate PEEK.

 Note

     .  Although unlikely, you may not find a date at this BIOS
        position.  Therefore, you should test to see if a date is returned.

 Example

     Is this an older computer?

     IF BIOSDATE() < CTOD("01/01/85")
        ? "Older version ...!"
     ENDIF

See Also: PCTYPE() CPUTYPE()



Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.