C++直接写入视频内存时打印白色块而不是文本
我目前正在开发自己的小操作系统内核,但我对 osdev 和 c++ 都是新手。 因此,在编写我的引导加载程序之后,我研究了如何用 C++ 编写一个简单的打印函数,并得出了以下结论:
void print(int color, const char *string){
volatile char *video = (volatile char*)0xB8000;
while( *string != 0 )
{
*video++ = *string++;
*video++ = color;
}
}
extern "C" void main(){
print((255,255,255), "Hello World");
return;
}
问题是它不打印文本插入,它打印白色(给定打印语句的颜色)块,其长度为插入文本。
I'm currently working on my own little os kernel but i'm new to osdev as well as c++.
So after writing my bootloader I researched how to write a simple print function in C++ and came up with this:
void print(int color, const char *string){
volatile char *video = (volatile char*)0xB8000;
while( *string != 0 )
{
*video++ = *string++;
*video++ = color;
}
}
extern "C" void main(){
print((255,255,255), "Hello World");
return;
}
The Problem is it doesn't print the text insertet it prints white(color given to the print statement) blocks with the lenght of the text inserted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论