I'm searching for information about managing BIOS settings through C++. I am unfamiliar with low level programming. I tried to make a research, but my lack of knowledge in low level programming terminology terminated my progress.
I need to draw pixels on the screen, change to text mode or video mode and so on. Is it possible to do it with a C++ program?
Can someone give me some information which can guide me through the process?
You question in fact has many subquestion :
_asm
keyword is your friend. It you use Windows and a MS compiler, _asm page on MSDN will give you examples.It will look like :
(*) standard portable C++ is independant of platform and implementation. As soon as you use BIOS call you are tight to a platform.