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 use real mode BIOS / VESA calls from GRUB?
- board firmware update through uefi capsule feature from Linux
- Assembly equivalent of array of function pointers?
- an issue when trying to enable virtualization
- How to write a BIOS program that runs before the OS?
- int 10h 13h bios string output not working
- Access BIOS-ROM in Assembly language (NASM)
- How read/write data on my laptop BIOS?
- Using BIOS functions through C++
- How to enable virtualization in bios windows 8 using AMD E1-2100 APU G505?
- How to jump if there is no keyboard key pressed
- GRUB2 + VESA BIOS Extensions / VBE broken?
- How to check the BIOS version or name in Linux through a command prompt?
- Why is the memory size returned by E801h BIOS interrupt 15h ignored on linux?
- grub2, grub-mkrescue, bios, vbe framebuffer, custom kernel
Related Questions in ERROR-CODE
- How to invoke an oozie workflow via shell script and block/wait till workflow completion
- What is the correct way to implement error propagation in C?
- Immunity Debugger - Error 193 during loading a file
- Microsoft SQL Server, Error: 18456 by login with "sa" through SQL Server Authentication
- How do I know if sips -g failed?
- Ajax not working in IE11 error code 0x2f78
- What is error 5 in chartboost?
- Error Code: 2013. Lost connection to MySQL server during query though the time hasn't exceeded the limit
- tftpGet error from tftpLib in VxWorks
- Process finished with exit code -1073741571
- CL.exe error code
- Getting error code 2869 while installing an upgraded version of the same application
- Is there some guides for designing error code in C
- Adaptive Payments Pay API Error 580001
- Where can I find nsis error codes?
Related Questions in MOTHERBOARD
- How to get motherboard ID on Linux from a C++ program
- Get motherboard information
- What exactly happens in the first microsecond when booting up on a modern computer?
- git installation failing, windows 10, CryptStringToBinaryW
- How to get Motherboard name in VB.net?
- Getting mother board serial number without WMI and without authentication
- Change baseboard serial
- What parameter to use as a unique computer ID to secure my app
- linux motherboard dump recovery
- CPU serial number / motherboard serial number using C#
- how to get motherboard Serial Number?
- I want to show motherboard information with powershell but change a parameter name output
- Python module to beep Windows motherboard speaker at specified frequency and length?
- How to get motherboard serial in Delphi?
- How to make motherboard beep via javascript?
Related Questions in ASUS
- How to enable Asus WMI LED manually in terminal by ID found in asus-wmi.h
- Android SoundPool problem on some devices
- How to turn off keyboard and lid lights for asus rog ubuntu 20.04 in SLEEP mode?
- IFTTT ASUS Trigger, Device Connected dropdown list shows only 1 device and duplicated in the entire list
- Asus Aura Sync Python Script Not Running Correctly As Windows Scheduled Task
- different regex behaviour on different devices
- How test app on Asus Fonepad without physical device?
- Headless Setup of Asus Tinker Board S
- Having problems enabling SSL on lighttpd installed on ASUSWRT router
- Why is Atom behaving like this?
- Asus Tinker board S SPI master not recieving data from slave
- Unable to start AI Suite 3 after updating ("Invalid class string, ProgID: AsusFanControlService.FanControlManager")
- Is there a way to manually change BIOS POST codes on motherboard LCD?
- android adb fails to recognise Asus ZenPad 8.0
- waking up from pm-suspend results in full restart
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 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)