C++直接写入视频内存时打印白色块而不是文本

发布于 2025-01-10 07:51:49 字数 440 浏览 0 评论 0原文

我目前正在开发自己的小操作系统内核,但我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文