Displaying Graphics in BIOS

99封情书 提交于 2020-01-16 18:57:08

问题


Using MASM32 is it possible to display bitmaps stored in a binary file embedded with the executable to the console?

Can anyone show me how?

Addendum: I'm not talking about a full fledge GUI here. Just the ability to display character bitmaps on the screen. They would be stored as 8x8 binary images in a file that we link to the executable.


回答1:


You can do anything using MASM you could do with C or C++. However, using MASM doesn't give you any special abilities (you will still need to access the filesystem, for example), so if this is an attempt to get round the problems pointed out in answers to your previous question, you are out of luck.



来源:https://stackoverflow.com/questions/2272000/displaying-graphics-in-bios

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!