I was wondering if anyone knew if it was possible to change the BIOS POST Code that is displayed on the motherboard LCD. I want to develop a program that can manipulate the LCD screen on the motherboard to display any set of desired characters. I haven't been able to find anyone who has done something similar. Does anyone have any ideas on if this is possible? Thank You!
Is there a way to manually change BIOS POST codes on motherboard LCD?
395 Views Asked by MasterYork42 At
1
There are 1 best solutions below
Related Questions in BIOS
- how to access to the bios in a thomson SP-HERO91.1BK32
- Purpose of stack register(s) in holding 0x7c00
- Behavior of the adress 0x7e00 in different sectors and their alternatives
- UEFI Event Logs
- Loading disk sector into memory (AT&T)
- x86 BIOS stage 1 boot code halting after loop from interrupt
- Patching UEFI Pei module problems with addresses
- Thunderbolt ex4 and Docking Station
- Bios enable disable buttons are not clickable
- memory allocation in real mode in the MBR
- Calculate time taken by program to run in uefi
- Confusion regarding CS and DS segment registers during bootloading process
- Bootloader Functionality in Context of JOS and significance of the MBR signature
- UEFI how to add user
- is there a bios interrupt or something like that to wait?
Related Questions in ERROR-CODE
- Propagate error code from recursive nmake on Windows
- Nginx not returning custom error page when user fails to authenticate
- Met office api calling via java code returns 401 code the same credentials works fine in postman
- gRPC InvalidArgument or FailedPrecondition if system cannot be updated
- Executing fork call gives exit status 0x3 for Linux
- TikTok API Permission Error when Fetching Campaign and Ad Reports Details in Python
- #NAME? error with Excel UDF despite name appearing after "=" in sheet
- Error message in R: "error to replicate an object of type 'closure'"
- Problem with Deleting node in BST (Binary Search Tree) function (code)
- Error Code: 1054. Unknown column 'company_name' in 'field list' when it's clearly there
- I get sometimes TOKEN_EXPIRED sometimes when using Method: accounts.signInWithPassword. How do I fix this?
- Telethon TelegramClient leads to exit code -1073741819 (0xC0000005)
- Error: UNKNOWN errno: -4094, readlink :C:\Users\OneDrive\Documents\oyebusy-beauty\oyebusy-web\oyebusy-webapp\.next\server\app-paths-manifest.json
- I have error in running dataset from Kaggle, it worked on my MacBook but it couldn't be runed in Windows10
- Is there any way to override the name of enum in scala?
Related Questions in MOTHERBOARD
- Will a processor with such a defect work?
- How to access the Primary-to-Sideband Bridge (P2SB) on an Intel Series 400 PCH?
- Getting motherboard sensor values using OpenHardwareMonitor in c#
- Get hardware information in flutter?
- how to get motherboard Serial Number?
- I2C bus linux: Systems with more than 4 memory slots not supported yet, not instantiating SPD
- visual studio xaml editor lag
- C# sometimes ID of CPU gets string of Zeros and also Motherboard ID is empty string
- How is the NVIDIA RTX A6000 getting 300 watts via a single 8-pin?
- How can I change CPU multiplier or CPU base Clock in real?
- Motherboard beep in Python
- What parameter to use as a unique computer ID to secure my app
- git installation failing, windows 10, CryptStringToBinaryW
- What exactly happens in the first microsecond when booting up on a modern computer?
- Control RGB colors on PC using Java
Related Questions in ASUS
- Unexpected segmentation fault encountered in pytorch DataLoader
- Asus Zenfone 8z OEM Unlocking option is missing
- How to enable Asus WMI LED manually in terminal by ID found in asus-wmi.h
- Unable to start AI Suite 3 after updating ("Invalid class string, ProgID: AsusFanControlService.FanControlManager")
- How to turn off keyboard and lid lights for asus rog ubuntu 20.04 in SLEEP mode?
- Asus Aura Sync Python Script Not Running Correctly As Windows Scheduled Task
- How to resolve weird and incomplete Uri & Path received while directly sharing image from android gallery to my flutter app
- Having problems enabling SSL on lighttpd installed on ASUSWRT router
- Headless Setup of Asus Tinker Board S
- Why is Atom behaving like this?
- Asus Tinker board S SPI master not recieving data from slave
- Getting `ssh client_loop: send disconnect: Broken pipe` on ipv6
- Error while building old Android Kernel 3.10
- Interacting with AURA_SDK.dll through python using ctypes
- Android SoundPool problem on some devices
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
POST codes are usually displayed on LED devices on the motherboard, not LCD. Historically, POST codes can be output via IO port 0x80 on IBM/Intel compatible systems. Been a while since I have done x86 assembly, but would be something like this:
This will make "41" display on the POST code LEDs. If you have 4 LEDs (a four digit value), then use AX instead of AL or use port 81h and a second write.
Note: as I recall in/out instructions are protected instructions and will generate an exeception when the CPU is in protected mode (e.g. from the Windows command line)