Thread: reset bios

  1. #1
    Registered User
    Join Date
    Aug 2003
    Posts
    45

    reset bios

    is there anyway to reset the bios using a program in C?

  2. #2
    Its not rocket science vasanth's Avatar
    Join Date
    Jan 2002
    Posts
    1,683
    I sure remember using the debug option in dos to mess and playaround with the BIOS..

  3. #3
    Registered User
    Join Date
    Aug 2003
    Posts
    45

    i know that!!

    debug option is ideal

    but how to to it in C
    when u get there, there is isn't any there there.

  4. #4
    still a n00b Jaguar's Avatar
    Join Date
    Jun 2002
    Posts
    187
    My point of view
    BIOS is somewhat verrrrrry specific.
    You can't do that
    slackware 10.0; kernel 2.6.7
    gcc 3.4.0; glibc 2.3.2; vim editor
    migrating to freebsd 5.4

  5. #5
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    Not sure if this is what you mean, but you can force a reset on a computer by doing this:


    Code:
    asm {
       db  0EAh
       db 0000h
       db FFFFh
    }
    or JMP FFFF:0000


    But inside of Windows this will not work and will only terminate your DOS session, but there are also ways around that.

  6. #6
    Registered User Azuth's Avatar
    Join Date
    Feb 2002
    Posts
    236
    There are serveral programs around that cause the BIOS to reset by forcing a checksum error. Allowing you to remove a forgotten BIOS password etc. I guess they must write to the BIOS somewhere, but hopefully somewhere they know is not going to kill things permenantly.
    Demonographic rhinology is not the only possible outcome, but why take the chance

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Can you still view the bios screen with a bad CPU?
    By HyperCreep in forum Tech Board
    Replies: 4
    Last Post: 12-31-2006, 06:57 PM
  2. bios and disabled keyboard
    By xddxogm3 in forum Tech Board
    Replies: 4
    Last Post: 12-18-2006, 12:01 PM
  3. Lost BIOS menu options?
    By PJYelton in forum Tech Board
    Replies: 3
    Last Post: 11-14-2004, 08:23 AM
  4. Bios upgrade-dell latitude
    By GanglyLamb in forum Tech Board
    Replies: 4
    Last Post: 06-18-2003, 01:55 PM
  5. Bios
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 10
    Last Post: 03-12-2002, 07:18 AM