Merge branch 'BetterTerm' into cpu

This commit is contained in:
Adrien Bourmault 2019-05-08 00:09:54 +02:00
commit 0243d09d1f
2 changed files with 12 additions and 0 deletions

View File

@ -100,12 +100,22 @@ noreturn void BtStartKern(multiboot_info_t *mbInfo, uint mbMagic, void *codeSeg)
// Main loop
while ((rc = bgetc(BStdIn, &ch)) == EOK) {
switch (ch) {
case 7: // BEL
if (rand() % 32 == 0) {
IoDoStarWars();
}
else IoDoBeep();
break;
case 17: // DC1
IoScrollUp();
break;
case 18: // DC2
IoScrollDown();
break;
case 27: // ESC
BFlushBuf(BStdOut);
PoShutdownQemu();

View File

@ -96,6 +96,8 @@ void ScanCodesInit(void)
ScanCodes[0x1C] = '\n';
ScanCodes[0x39] = ' ';
ScanCodes[0x40] = 7; // BEL
// Numpad
ScanCodes[0x48] = 17; // DC1, will serve as Arrow Up
ScanCodes[0x50] = 18; // DC2, will serve as Arrow Down