mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 15:26:43 +00:00
Remove ASCII 0x5 cursor character from files.
This commit is contained in:
parent
8f94c39bc4
commit
f86a0ed978
7 changed files with 6 additions and 6 deletions
Binary file not shown.
|
@ -255,4 +255,4 @@ public U64 sys_font_aux[256] = {
|
|||
0x000000000F030C0F,//<2F>
|
||||
0x00003C3C3C3C0000,//<2F>
|
||||
0xFFFFFFFFFFFFFFFF,//<2F>
|
||||
};
|
||||
};
|
|
@ -108,7 +108,7 @@ U0 SysGrInit()
|
|||
text.rows = sys_framebuffer_height / FONT_HEIGHT;
|
||||
|
||||
text.screen_size = sys_framebuffer_width * sys_framebuffer_height;
|
||||
text.buffer_size = text.screen_size * 4; //buffer for 32-bit, but only 16 colors now.
|
||||
text.buffer_size = text.screen_size * 4; //buffer for 32-bit, but only 16 colors now.
|
||||
text.raw_screen = CAlloc(text.buffer_size);
|
||||
text.fb_alias = sys_framebuffer_addr;
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ SYS_VBE_INFO:: DU8 sizeof(CVBEInfo) DUP(0);
|
|||
SYS_VBE_MODES:: DU8 sizeof(CVBEModeShort) * VBE_MODES_NUM DUP(0);
|
||||
SYS_VBE_FINAL_MODE:: DU8 sizeof(CVBEMode) DUP(0);
|
||||
SYS_VBE_FINAL_MODE_NUM::DU16 0; //mode number of final mode set
|
||||
|
||||
|
||||
SYS_FRAMEBUFFER_ADDR:: DU64 0;
|
||||
SYS_FRAMEBUFFER_WIDTH:: DU64 0;
|
||||
SYS_FRAMEBUFFER_HEIGHT:: DU64 0;
|
||||
|
|
|
@ -26,7 +26,7 @@ U0 Auto()
|
|||
// in_str = MStrPrint("BootHDIns;OnceFlush;Reboot;");
|
||||
// in_str = MStrPrint("BootHDIns;OnceFlush;OutU8(0x501,0x31);");
|
||||
// in_str = MStrPrint("BootHDIns;OnceFlush;Once(\"Sleep(700);In(\\\"CC\\\\n%d\\\\n\\\\n1024\\\\n768\\\\n\\\\n\\\\n\\\");OutU8(0x501,0x31);\");OutU8(0x501,0x31);");
|
||||
in_str = MStrPrint("BootHDIns;OnceFlush;Once(\"#include \\\"/Misc/Auto/AutoFullDistro00\\\";;Auto;\");OutU8(0x501,0x31);");
|
||||
in_str = MStrPrint("BootHDIns;OnceFlush;Once(\"#include \\\"/Misc/Auto/AutoFullDistro00\\\";;Auto;\");OutU8(0x501,0x31);");
|
||||
OnceDrive('C', in_str);
|
||||
OutU8(0x501,0x31);
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ U0 Auto()
|
|||
BootHDIns;
|
||||
OnceFlush;
|
||||
in_str = MStrPrint("#include \"/Misc/Auto/AutoFullDistro000\";;Auto;OutU8(0x501,0x31);");
|
||||
OnceDrive('C', in_str);
|
||||
OnceDrive('C', in_str);
|
||||
OutU8(0x501,0x31);
|
||||
}
|
||||
Auto;
|
||||
|
|
|
@ -34,7 +34,7 @@ U0 Auto()
|
|||
BootHDIns;
|
||||
OnceFlush;
|
||||
// in_str = MStrPrint("Once(\"#include \\\"/Misc/Auto/AutoFullDistro000\\\";;Auto;\");OutU8(0x501,0x31);");
|
||||
// OnceDrive('C', in_str);
|
||||
// OnceDrive('C', in_str);
|
||||
OutU8(0x501,0x31);
|
||||
}
|
||||
Auto;
|
||||
|
|
Loading…
Reference in a new issue