⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 system_lib.h

📁 哈工大的几个人开发的操作系统pyos的部分源码
💻 H
字号:
#ifndef _PYOS_SYSTEM_LIB_
#define _PYOS_SYSTEM_LIB_

/* 系统显示输出库 */
/* 由于是系统调用库,所以它们的实际代码只有一份,因此不能被链接到其余进程里面 */
/* 因此,只有系统调用函数才有必要做为public,而其余的函数都是由系统调用函数调用的 */
class class_pyos_SystemLib_Video{
  protected:
    static unsigned int cursor_x_pos ;
    static unsigned int cursor_y_pos ;
    static void SetCursor( int x_pos , int y_pos ) ;
    static void Scroll() ;

  public:
    static void Print( int x_pos , int y_pos , char ch , char style ) ; 
    static void Clear() ;
} ;

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -