Questions tagged [bios]

5 questions
68
votes
3 answers

Which programming language is used to write a BIOS program?

As I understand, the BIOS code/bitstream that is held in the ROM should be generic (work alongside with multiple CPU types or ISAs). In addition, I saw mentioned on the web that it is possible to dump its code (and to "disassemble" it). So, in which…
Reflection
  • 769
  • 1
  • 6
  • 6
1
vote
2 answers

What could "move an instruction without a 16-bit bus" mean?

Spoiler alert! This question (and, possibly, answers) could contain spoilers regarding "Halt and Catch Fire" TV series. Background I'm a web deleloper and do not have a CS degreee, so my understanding about hardware is at How Do Computers Work?…
Nash Bridges
  • 113
  • 3
0
votes
4 answers

Relation between Kernel & BIOS routines

How does a Kernel provides different functionality to OS? Does it use the BIOS routines or use special device drivers for this, or something else? If uses BIOS how does it come to know which routine performs what because different BIOS vendors have…
WhiteSword
  • 11
  • 1
  • 3
0
votes
3 answers

What level of a computer system does firmware run on?

In the following levels of a computer system, on which level does firmware (e.g. BIOS) run? I guess: BIOS doesn't depend on OS, so it must run on some level lower than level 3. BIOS is written in machine language, so is it a program running no …
Tim
  • 5,405
  • 7
  • 48
  • 84
-2
votes
1 answer

Loading My Custom OS from USB flash drive

Suppose I want to create a portable OS, that needs a USB flash drive only to work. and i wrote my boatloader in the first sector to be loaded by the BIOS, from here on, what can I do to load my OS kernel, which is located somewhere in a USB drive?