The BIOS software is built into the PC, and is the first code run by a PC when powered on ('boot firmware'). The primary function of the BIOS is to load and start an operating system.

learn more… | top users | synonyms

-4
votes
0answers
22 views

Windows 7 BIOS Lock [closed]

My school had a computer that was locked today, and from the graphics of it, it was obviously part of the bios. But if you lock the computer, it usually starts up and just says "Enter Password:" and a ...
-2
votes
1answer
32 views

Setting up Raid Arrays >2,2TB (GPT MBR Issues or planned obsolescence) [closed]

Extending a Raid Array with 3TB Hard drives, I have to solve the 2TB Limitation using 2010-2011 hardware (motherboards, raid controllers, etc). All under Windows 7 64b. Any partition above 2,2TB ...
-1
votes
0answers
26 views

How to write a .rom file with a flash drive/CD? [closed]

I have a Benq S6 MID. I tried to install XP on it. I had to flash a modified BIOS onto it. I failed at installing XP and now I want to put the original TIM bios back on it so i can run the TIM OS.
0
votes
0answers
22 views

how to detect ECC error in memroy testing under UEFI shell

I wrote a EFI binary file to test physical DIMMs under UEFI shell, the process is quite simple - first write a test pattern in to a physical address, then read it out and compare with the original ...
1
vote
0answers
33 views

How to enable Intel VT? [migrated]

I have a CLEVO w150erm, with a i7-3610QM processor, which supports Intel VT-x. However in order to use it I have to activate that option in the BIOS (or so that's what I believe) but I simply can't ...
-1
votes
0answers
10 views

How can I recover the UUID in BIOS [migrated]

In BIOS my UUID is showing all zeros after a re-install of authentic windows. This is causing some issues for my computer. Is it possible to retrieve/re-write this information?
-1
votes
1answer
25 views

How to modify qemu-kvm bios? [closed]

I know qemu-kvm use seabios as pc bios.i just want let vm created by qemu-kvm show a custom JPEG image during bootup. How to modify the file bios.bin?
1
vote
0answers
53 views

Replicating the CMOS contents from one PC to many others

We have about 100 PCs of the same brand and model manufactured in 2010. I need to change in all these PCs, periodically and manually, the system and user passwords through the BIOS and would like to ...
0
votes
0answers
54 views

Hardware/BIOS serial number [closed]

If I update my BIOS, does the BIOS serial number change? I am wanting to know this because I am making a software registration and would like to get some hardware IDs of hardware items that do not ...
-1
votes
0answers
50 views

Stuck in GNU Grub and Can't get to BIOS because Keyboard is Disabled [closed]

I can usually access BIOS by hitting Delete on my keyboard when I see the motherboard splash screen. However, I hit Delete on my keyboard multiple times and it took me to this GNU Grub 2.0 screen and ...
0
votes
2answers
64 views

Play BIOS sounds (with PC speaker) in Java or Javascript

Is it possible to play basic BIOS sounds with Javascript or Java? I need sounds that can be played on PC computers without Sound Card. Every PC has built-in PC speaker that can be useful in this case. ...
2
votes
1answer
50 views

ASP.net get hardware information

If I create an ASP.net page, am I able to get the current users CPUID and BIOS serial number? Or is that not allowed because of security? I currently have a Visual Basic.net application that gets ...
2
votes
2answers
63 views

Addressing in Assembly

I'm currently working on a tutorial that demonstrates how to build an OS from scratch. In some section of the tutorial there was some assembly code that demonstrates addressing. The code simply ...
1
vote
1answer
34 views

Calling Assembly Functions in Nasm

I'm currently working on building a simple OS from scratch , so i'm testing some boot sector code and i'm simulating it using Qemu. My boot sector code is supposed to print 'A' when the OS boots. ...
3
votes
1answer
29 views

How can use memory BIO's pointer for reading and writing?

First I create Memory BIO like this BIO *mem = BIO_new(BIO_s_mem()); BIO_puts(mem, "Hello World\n"); and get the pointer like this BUF_MEM *bptr; BIO_get_mem_ptr(mem, &bptr); My doubt is ...
1
vote
1answer
91 views

BIOS int 10h service 0 and EGA mode

I've spent a lot of time trying to find out what happens when one calls BIOS INT 10, service 0 to set video mode. Is it possible to perform these actions manually using EGA ports? I've found ...
0
votes
1answer
43 views

completely silent (or custom) boot for Linux appliance

I am working on an appliance that runs on Linux (Ubuntu 10.04 for now) and x86-64 Intel based PC. I need to completely customize the boot screens - no BIOS messages, and either (a) no screen output ...
0
votes
0answers
39 views

Any way to programmatically switch SATA mode from legacy to AHCI?

I have an Apple MacPro where there is no option to change the SATA controller mode in EFI/BIOS, and by default for BIOS emulation it is set to IDE legacy mode. Even if I change a windows installation ...
0
votes
0answers
44 views

What is in the non existing BIOS Parameter Block part of GRUB 2 MBR?

Looking at MBR for BIOS based GRUB 2 install. Dump of MBR with dd give an image with a "standard layout" except for the BIOS Parameter Block (BPB). I'm looking at in parallel with code from mainly ...
0
votes
1answer
183 views

Read a sector from hard drive with int 13h

I have a simple program. It must read first sector from hard drive (not mbr), and write it to the 0 sector (mbr). But it doesnt work. I think it is connected with wrong DAP. Thanks. [bits 16] ...
1
vote
2answers
96 views

How to know that current mode is real or big real mode?

Suppose my API is to be called from a system which may work in real mode or big real mode only. My API is supposed to display the current system mode. Then how could it know whether the current mode ...
0
votes
2answers
322 views

Colored Hello World in TASM

Good day. I'm new in assembly language and I'm trying to print a colored "Hello World" in TASM. Here is my code so far. It just prints "hello world" without a color. .model small .stack 100h .data ...
0
votes
0answers
85 views

How to get Alt-[ key press by BIOS int 16h?

I use this code to read key scan codes: mov ah, 00h int 16h // actual key scanning mov _asciiCode, al mov _scanCode, ah And I use this code to read modifier keys state: mov ah, 02h int 16h // ...
1
vote
2answers
186 views

Does booting in EFI mode mean that I shall not have access to BIOS interrupts?

I am attempting to develop a simple OS. I have done some assembly programs before and have had to use INT 10h to display characters to the screen. I understand that UEFI has support for legacy BIOS ...
0
votes
2answers
193 views

Significance of Reset Vector in Modern Processors

I am trying to understand how computer boots up in very detail. I came across two things which made me more curious, 1. RAM is placed at the bottom of ROM, to avoid Memory Holes as in Z80 ...
1
vote
2answers
100 views

Unique computer id based on CPU flags

I need to use unique computer id for the purpose of software licensing. I decided to use CPU Flags. On MSVC they are retrived with function __cpuid, and on gcc version 4.3 and up with the function ...
0
votes
1answer
59 views

assembly int10h not blinking

why is that the display character is not blinking? i know that the higher bit should be set to 1 in order for the blinking bit to be turn on. ive turn it on and yet nothing happens. ive research ...
0
votes
1answer
30 views

Using Int13h with FreeDos Debug

I'm working on some assembly, and as part of a school project I am using Int 13h 08 to Read current disk parameters, but I'm messing something up. I'm using FreeDOS in a VirtualBox, and using Debug. ...
0
votes
1answer
92 views

Using Int 13H to Read disk parameters

My goal is to, simply put, use Int 13h to read my disk parameters. I understand this can not be directly accomplished in Windows, as it essentially intercepts the BIOS call. My thinking, thus far, ...
2
votes
1answer
162 views

Is there a standard BIOS Int 10h video mode for 43 lines or more?

I'm writing code which runs in real mode before any OS is loaded. Part of my program involves a dump of information to the video display, and the standard 80x25 text mode is not cutting it. Many ...
0
votes
0answers
280 views

Remove BIOS Password Fujitsu Phoenix Protected Core D2584 Motherboard V6.00 Release R1.11.2584.A1 [closed]

I don't have much experience with this, but my teacher insists that it's possible to crack/remove the password of a fujitsu phoenix protectedcore bios... I've been reading around (mostly really old ...
0
votes
1answer
48 views

Manipulate the build date of an bios version

I have updated to a new bios version which is probably corrupt. Now I can't fall back to an older bios version because the build date always has to be newer than the currently installed bios. Is ...
1
vote
1answer
151 views

How can I find the BIOS brand/version from SMBIOS (in VMWare with FreeDOS)

I am writing a program that finds and prints PC info (CPU, Hard disks, BIOS etc.) in low-level assembly language that runs in VMWare with FreeDOS O/S. I need to find my BIOS version and brand id (or ...
1
vote
2answers
123 views

Assembly help for INT 13h on Disk Information

I am using DOSBox and nasm, trying to use int 13 in order to get hard disk information such as serial code etc. Int 13 needs: AH=25h DL=(80h,81h) and ES:BX-> 512 byte buffer for reply ...
3
votes
1answer
131 views

First OS, a few assembly line explanations

I am writing my first OS boot sector in assembly using NASM. I have it working, it just displays "Hello OS world!" in red letters. Simple enough. I have converted my boot.asm into boot.bin, and that ...
0
votes
1answer
126 views

Does current EFI BIOS natively support AHCI?

I have one question about the AHCI support in current EFI BIOS... Before when we plug external storage card(Ex. PCie-SATA) and attach the SATA drive, BIOS always invokes the Option ROM on that card ...
2
votes
2answers
109 views

BIOS Version from x86 assembly

Is there a way I can find the version and other information of BIOS using x86 assembly in DosBOX?
1
vote
1answer
55 views

ASM Check if ALT key is pressed

I'm struggling with checking if ALT key is pressed in linux bootloader int 0x16 mov ah, 0x0e int 0x10 Above code prints ascii characters just fine, but how do I check for ALT key?
0
votes
0answers
231 views

EC: Look up EC in DSDT | ACPI Error: Method parse/execution failed

I'm running Debian testing on a Samsung P55 Notebook and I'm getting this ugly message (see below) on every start. I googled the error and found some information (about nearly the same error) saying ...
0
votes
0answers
17 views

What should one look for in a BIOS to know whether it is possible to boot from USB key?

What features is in a laptop's BIOS / peripherals that allow for booting from USB key? I'm in the process of buying an eeePC but want to ensure that it can boot a Live Ubuntu installation from a USB ...
0
votes
1answer
46 views

How does the bios boot in quit mode?

I have an option rom but the bios doesn't boot unless I press the esc-key and the bios calls the option rom. I want to know how the bios calls the option rom without pressing the esc-key? Does it jump ...
0
votes
0answers
76 views

UEFI/BIO Screenshots [closed]

I'm looking for a resource that shows screenshots from all the various flavors of BIOS and UEFI. Our software has to be booted from a CD which requires us to educate the end user how to change their ...
0
votes
0answers
181 views

1706-Smart Array Controller Extended Bios Data Area Memory Corrupted [closed]

Ok Yall, This System is a Proliant ML350 Server configured in Raid5 with 4 SAS Drives. Drive No1 failed and we shut it down, replaced the HDD, reboot, Hit F2 to recover the logical drive. That ...
0
votes
0answers
17 views

soft restart sys call

I need to do a soft restart from my application, so I was wondering is there any bios call or something that does that? Its not exactly application it's more like a mini OS that runs from boot menu, ...
2
votes
0answers
401 views

HP Elite 8300 SFF - Change Bios Boot Order WMI

I use this vbscript to change Bios Boot Order settings from Windows: function ErrCode(oReturn) Dim strReturn Select Case oReturn Case 0 strReturn = "Success" Case 1 strReturn ...
0
votes
0answers
147 views

BIOS Documentation for QEMU-KVM

I am thinking of implementing a custom operating system from scratch, and I am collecting information about the options that I have in relation to the PC abstraction. In that respect, I would like to ...
0
votes
2answers
75 views

For strict education purposes, what exact format of bytes/bits do modern BIOS understand?

BIOS will look in the first 512 bytes of the first sector(at least on PC BIOS, AmeriTrend, PhoenixBIOS, etc.), and any .bin file binary formatted block of bytes will be understood by BIOS, am I ...
0
votes
0answers
76 views

How do i link a vbs file to an exe ?

I've got a question which may be quite simple for most, but being a novice at VB, I'm hoping someone who is stroing in VB can help me out here. Here is the scenerio : I've been looking for a tool to ...
2
votes
2answers
112 views

How to access the Internet only via BIOS?

I'm writing a mini OS just for fun. I want to save some key information to one securiry server on the Internet and ever fetch it BEFORE booting my OS. So my problem is: How to access the Internet ...
0
votes
0answers
36 views

Get BIOS information without WMI in C++ [duplicate]

Possible Duplicate: Access Motherboard information without using WMI I need to get some information of the BIOS, like the serial number, version, vendor... I would like to know if there is ...

1 2 3 4 5