Skip to main content

Questions tagged [bios]

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.

0 votes
0 answers
20 views

Setting Endorsement Primary Seed fails

I am trying to set the EPS in an EDK2 UEFI Application. I always get "Device Error". int main(int ArgC, char *ArgV[]) { TPMS_AUTH_COMMAND AuthSession; AuthSession.sessionHandle = ...
Shmurkio's user avatar
0 votes
0 answers
37 views

Alder Lake N - UEFI GPIO Register Defaults/Initialisation

I purchased an obscure NAS only sold to the Chinese domestic market (Zspace Z4Pro) with a view to using another OS on it since it was intel based (i3-N305) For reasons unknown the power to the drive ...
Whiterat's user avatar
0 votes
0 answers
39 views

smbios table header invalid?

i have this hardware id spoofer im working on, and the thing is that i get this result running it Processing SMBIOS header: Type=0, Length=26 Processing SMBIOS header: Type=0, Length=26 Processing ...
Jackson Andrawis's user avatar
2 votes
1 answer
47 views

assembly 8086 space invaders project, int 10h doesnt work

im making a space invaders project to school and im trying to check if the aliens got to the button of the screen. i used the int 10h d (it takes the color of a pixel on the screen) on my code and it ...
Kim Strugo's user avatar
1 vote
0 answers
51 views

Why are the upper half and lower half of the CMOS register value the same?

I used RW Everything to access the CMOS register values through Data/Index ports with 70/71 ports. There are 256 addresses in total, 0x00 ~ 0xFF. I'm wondering why the upper 128 values (0x00~0x7F) are ...
Edwin's user avatar
  • 213
0 votes
0 answers
48 views

Is there a way to detect BIOS or UEFI system I am dealing with under WinPE?

I would like to know is there an option to find out if my Windows 7 or 10 PE is run on UEFI or BIOS system? I checked https://learn.microsoft.com/ru-ru/windows/win32/cimwin32prov/win32-bios and it ...
alive-one's user avatar
1 vote
1 answer
50 views

Centering Text in Assembly Language Programming

Do you have any idea on how I can center the text or string in Assembly Language Programming? Here's my source code: .model small .stack 100h .data ;********************************************** ...
D Ex's user avatar
  • 11
0 votes
0 answers
35 views

At what point during system boot is BIOS loaded

On a traditional x86 system boot from power on, at what point does the BIOS get loaded? A CPU will progress from power off to S5 sleep state, through to S0 operational state. Is there a standard stage ...
omar_hussein's user avatar
0 votes
0 answers
41 views

Dell BIOS Updates Script Freezes

I need to be able to update the BIOS on over 5,000 Dell computers when there is a critical BIOS update. I've messed with batch files and Powershell. This is the latest Powershell. When I run it, it ...
Tanya Miller's user avatar
1 vote
1 answer
45 views

Libreboot build error: ERROR ./build: this command as root is not permitted

I have problem. After ./build roms all command I get ERROR ./build: this command as root is not permitted. I changed the owner to normal user of the lbmk directory but it didn't help. I building ...
Krzysztof's user avatar
0 votes
0 answers
109 views

UEFI driver doesn't show "Hello World" in EFI Shell on boot

I made this UEFI driver with EDK2. It prints "Hello, World!" and pauses the Shell for 60 seconds. When I load the driver in EFI Shell manually it works perfectly. I then proceeded to pack ...
Shmurkio's user avatar
0 votes
1 answer
46 views

Purpose of stack register(s) in holding 0x7c00

I have a problem in understanding the curtain part of the code, how it works and what's behind the operating stack register(s). ; that part i'm referring to mov ss, ax mov sp, 0x7c00 I need an ...
memobang's user avatar
0 votes
0 answers
72 views

UEFI Event Logs

I am unable to get the event logs in UEFI mode tried in different ways like from BIOS settings of the Intel NUC board and tried using the UEFI application but failed to collect UEFI event logs also ...
Venkat's user avatar
  • 1
1 vote
1 answer
35 views

Loading disk sector into memory (AT&T)

I want to load a sector into a memory address starting at (0xD000). I use index addressing to complete disk load with 0x13 BIOS interrupt. Using 16bit mode, BIOS, AT& Syntax assembly. I am having ...
CharlesTheZouch's user avatar
1 vote
1 answer
88 views

x86 BIOS stage 1 boot code halting after loop from interrupt [closed]

I have some x86 BIOS boot code (16 bit real mode): org 0x7C00 ; tell compiler where we are located in memory bits 16 ; tell compiler that ...
PewPewCricket's user avatar

15 30 50 per page
1
2 3 4 5
63