Tagged Questions

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

12
votes
3answers
242 views

How to autostart a program from floppy disk on a Commodore c64

Good news, my c64 ist still running after lots of years spending time on my attic.. But what I always wanted to know is: How can I automatically load & run a program from a floppy disk that is ...
10
votes
3answers
898 views

What information does BIOS load into RAM?

I know that, on booting, BIOS loads the first sector (512 bytes) of a pre-defined device drive on memory 0x7c00 and then jump to that address. So, memory from 0x7c00 to 0x7dff is occupied. Is there ...
9
votes
2answers
341 views

Hardware clock signals implementation in Linux Kernel

I am looking at some pointers for understanding how the Linux kernel implements the setting up of various hardware clocks. This basically relates to working with setting up the various clocks that ...
9
votes
1answer
137 views

Where is there good information about low level PC booting?

I'm interested in writing a boot loader for USB sticks that looks for a directory of ISOs and gives you the option to boot one of them as if it were a bootable CD. This is basically so I have a menu ...
8
votes
3answers
366 views

How is the BIOS used by a modern OS?

What's the function of the BIOS in a modern OS? Is it still used after booting? And is there some kind of BIOS API?
7
votes
3answers
262 views

APIs for querying and setting bios properties

Let's say I would like to change a setting in the BIOS of my computer in Linux (let's say Ubuntu 11 if it matters.) What types of APIs exist to allow you query and manipulate BIOS setting? Further, ...
7
votes
4answers
693 views

How to write BIOS program that connects to the internet?

I am aware that there are programs out there like lojack for laptops that get installed on the BIOS, but I'm still a little confused. When reading about lojack, it seems to me that they can't fully ...
6
votes
3answers
565 views

BIOS INT 13H with AH=2 can only read 72 sectors each time. Why?

I am using Bochs 2.4.5 to write a boot sector code. I use the INT 13H to read sectors from floppy. But I found that if the sector count to read > 72, the INT13 will fail. And the return code is AH=1. ...
6
votes
5answers
1k views

BIOS Programming

Is it possible to call windows libraries that will live on the hard disk from a program that lives in the bios? I'm trying to write a program that will be a BIOS option (after POST). I'd like the ...
5
votes
3answers
127 views

Changing bios code/flashing the bios

I've spent a lot of time developing an operating system and working on my low level boot loader. But now I want to take some time off my operating system while not leaving the low-level environment ...
4
votes
2answers
72 views

Real-Mode x86 ASM: How are the Basics Done?

I'm currently reading the boot.s file in the source for the first ever Linux kernel (assuming that 0.01 is indeed the first public release). I know C and ASM, the latter considerably less than the ...
4
votes
1answer
189 views

How to turn on Networked Computer by using WOL (Wake on Lan) C# or Java

Can u please give me full code to turn on networked computer by WOL option of Network Card and BIOS. Please provide me all the details and please try to give me working code. Thanks
4
votes
4answers
294 views

Stack size required for bios interrupt call

I am working on a small bootloader for learning purposes. Is there any specification/information available about the (free) stack size required for a bios interrupt call?
4
votes
3answers
851 views

What is significance of memory at 0000:7c00 to booting sequence?

Why does bios read at partition's boot record at 0000:7c00 ? What is special about that address ? what ':' doing in referencing an address ?
4
votes
1answer
179 views

BIOS build number and Identification number?

I want to get the BIOS Build number and Identification number. I am already using WMI class Win32_Bios dataclass but I it is not returing the value for Build number and Identification number on any of ...
4
votes
3answers
400 views

Why do boot loaders relocate in memory?

I am writing a boot loader, and I've got most of the details down, but I am not sure why some boot loaders relocate themselves in memory before they begin the bulk of their execution. Can anyone ...
3
votes
2answers
105 views

BIOS like UI with C++

Does anyone know how I can make a program with user interface like BIOS has? Like an API or something. I've seen some shops having software using an interface like BIOS has at the shop's computer(s) ...
3
votes
1answer
186 views

How is the BIOS ROM mapped into address space on PC?

The x86 CPU begins execution at physical address 0xFFFFFFF0. There at the end of the address space the BIOS ROM is located. The first instruction the CPU executes from the ROM is far jump which ...
3
votes
2answers
284 views

Detected BIOS data in system (Delphi)

How detected name of modern chipsets in system (Delphi)
3
votes
3answers
305 views

Why can't I call BIOS interrupts from protected mode?

Right. I've spent over three hours today trying to understand why you can't call a bios ISR when in protected mode. I get that once you set and IDT it wont necessarily be in the usual address for the ...
3
votes
1answer
204 views

How can I read the VESA/VideoBIOS “Mode Removal Table”?

Many sites and articles on getting widescreen monitors to work on notebooks in their native resolution mention something called the "Mode Removal Table" in the Video BIOS which specifically prevents ...
3
votes
2answers
181 views

Is there a way to determine the time taken from power on to Windows starting

I would like to be able to tell how long it takes to get from power on to windows starting. Is there a way of determining this retrospectively (ie once windows has started)? Does the BIOS/CMOS hold a ...
3
votes
2answers
678 views

Interrupt №13 (ah=48) - not working

I want fetch the parameters of my hard disk. Using the technique described here. This is code showing normal parameters of floppy disk: mov dl,00h mov ah,08h int 13h This is code, showing not ...
3
votes
4answers
266 views

Why is my boot loader's stack segment at 0x3FF (end of Real Mode IVT)?

Title says it all. "address 0x500 is the last one used by the BIOS" is what Wikipedia - "00000000-000003FF Real Mode IVT (Interrupt Vector Table)" is what osdev.org's article over the BIOS ...
3
votes
2answers
1k views

Get GPU Information in linux C

Is there any library in C for Linux to get gpu information for example BIOS Verison DigitalID...
3
votes
6answers
463 views

Basic OS boot question

I have some kinda basic question to the boot process of a computer and the part where the bootloader calls the OS. So I know that the BIOS copies the first 512 bytes from a bootable drive into memory ...
3
votes
1answer
393 views

How do I reserve low memory (pre OS)?

Background: I need to reserve an amount of memory below 0xA0000 prior to my operating system starts. To do this I change the 0040:0013 (or 0x413) word which is the amount of low memory available in ...
2
votes
2answers
25 views

why keyboard driver required as keyboard input can be took either from interrupts or by accessing keyboard buffer?

As keyboard input as scan codes can be obtained from calling interrupt 09 IRQ1 or similar ones or by directly accessing the BIOS keyboard buffer at segment 0040h why is there a requirement for a ...
2
votes
2answers
42 views

Is there a UUID type of value in Linux that can uniquely identify an instance of a VM?

I have an app that runs in Linux. Each one will try to get a UUID from OS and report to a centralized server. I want to make sure all instance are running with globally unique UUID. If the linux is ...
2
votes
1answer
47 views

BIOS int 13H, AH=02 (to read floppy) and the stack segment

If I don't initial stack segments, what will happened? Will when some case cause reading errors? Thank you~
2
votes
2answers
64 views

Accessing BIOS to start computer automatically

I'm interested in starting up my computer before I get to work because we HAVE TO shut it down at the end of the day (I.T manager insists), and it takes forever to start-up. Ideally I would like my ...
2
votes
3answers
80 views

How a bootloader can read a DVD(cd)?

I have a first stage bootloader written in assembly. I need that it loads the second stage bootloader from dvd(or cd). I only found examples where it reads from floopy or hdd. The interrupt used there ...
2
votes
2answers
75 views

What part of the computer renders text? Hardware or Software? [closed]

For example, if i make a very simple bootloader that runs a "hello world" program (as the operating system), where is the graphical representation of the text processed. The the GPU render the text, ...
2
votes
1answer
103 views

Can i change the BIOS setting information using any java program

Please let me know if i can set\change BIOS information setting using java.If possible please give me any hints to do this using java.
2
votes
1answer
225 views

How can i get BIOS information using java?

Please let me know if i can get the BIOS setting information's using a java program.I am using windows7 as operating system.
2
votes
1answer
236 views

bios int 0x13 fails without error

I'm writing a bootloader for educational use and it goes quit well. But when I tried to boot on a real machine my disk read code fails to load some sectors. No error code is given nor is the CF set. ...
2
votes
1answer
67 views

What's the last instruction to cause the machine go to S3 sleep?

From ACPI Spec 4.0 page 299, there is some sample code to show how to put the machine into S3 sleep. I just wondering what are the last instructions to cause the hardware to sleep? What happens after ...
2
votes
3answers
325 views

Do normal x86 or AMD PCs run startup/BIOS code directly from ROM, or do they copy it first to RAM?

I understand modern computers have modified Harvard architectures. Can the fact that they can read instructions from somewhere other than where they hold data allow them to fetch instructions ...
2
votes
2answers
604 views

How to program Bios to automatically power up the computer at a specific date and time

I want to set the BIOS to power up the computer at a specific date and time. I can do it directly in BIOS but I want to do it in a program (made with Delphi). I am aware that I can do this with ...
2
votes
1answer
203 views

Query Hardware-Specific Information on Windows With C++

Specifically, I want to query a system's GPU for the following: The name of the GPU, the series (e.g. ATI Radion 5800, NVIDIA GeForce 4 MX, etc.), the BIOS version, the driver version, the GPU clock ...
2
votes
1answer
292 views

Displaying data using BIOS in C

Is there any way to print data using bios in c. I know in assembly you can use int 0x10, but is there any equivalent for C?
2
votes
3answers
399 views

0xffff0 and the BIOS

I have a quick question that I can't seem to find the answer to. When a pc first boots up, it starts executing at physical address 0xffff0. This address contains a jmp instruction to the BIOS. Now ...
2
votes
1answer
183 views

Bootstrap Hard disk access

I'm trying to write a bootstrap loader for the fun of it, i've been using guides such as: http://www.omninerd.com/articles/PC%5FBootstrap%5FLoader%5FProgramming%5FTutorial%5Fin%5FASM ...
2
votes
2answers
356 views

Best way to read contents of a bios in linux

An odd question really. Is it possible to read the entire contents of the bios chip in. We have a problem where we need to verify the contents of the bios chip? Cheers James
2
votes
3answers
242 views

How to read out the boot order?

Is there any way to get the boot order programmatically, on Windows ?
2
votes
2answers
995 views

Common way to get BIOS information via C

After reading some stuff it seems I can map the SMBIOS memory and parse it. I have no idea on how to go about this. I can't use any managed code as I would like this to be compilable under any OS. ...
2
votes
2answers
1k views

C# Getting/Setting BIOS Settings?

I work with a Dell XPS M1710. The laptop has lights in the lid, the side speakers, and the front speakers (3 sets of lights that can be individually adjusted) and a light under the mousepad. In the ...
2
votes
3answers
1k views

Is it possible to shutdown linux kernel and resume in Real Mode?

Let's say I'd like to start a small linux distro before my ordinary operating system start. BIOS load MBR and execute MBR. MBR locates the active partition which is my linux partition. Linux start ...
2
votes
1answer
1k views

Proper way to access registers in a PCI configuration space

When you need to access registers in the PCI configuration space, do you simply need to used built-in BIOS functions to read/write DWORDs into the configuration space? For example, if I am trying to ...
2
votes
4answers
837 views

How to Enable Wake on LAN programmatically

Is there a way to programmatically reach into the BIOS and turn on the Wake on LAN capability for those machines that support it? Ideally, the solution would be cross-BIOS, but hitting each of the ...

1 2 3