簡體   English   中英

未在c內核保護模式下獲取鍵盤輸入

[英]Not Getting keyboard input in c kernel protected mode

我正在按照James Molloy的教程制作C和32位匯編語言的操作系統,直到IRQ和PIT步驟為止,並且我試圖獲取鍵盤輸入,並嘗試將此代碼添加到教程的代碼中,但我無法解決問題。

Keyboard.c:

#include "keyboard.h"
#include "common.h"
#include "monitor.h"
#include "isr.h"
//Keyboard Layout USA
unsigned char kblayout[128] =
{
    0,  27, '1', '2', '3', '4', '5', '6', '7', '8', /* 9 */
   '9', '0', '-', '=', '\b',    /* Backspace */
    '\t',           /* Tab */
     'q', 'w', 'e', 'r',    /* 19 */
     't', 'y', 'u', 'i', 'o', 'p', '[', ']', '\n',  /* Enter key */
    0,          /* 29   - Control */
  'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', ';', /* 39 */
 '\'', '`',   0,        /* Left shift */
 '\\', 'z', 'x', 'c', 'v', 'b', 'n',            /* 49 */
  'm', ',', '.', '/',   0,              /* Right shift */
  '*',
    0,  /* Alt */
  ' ',  /* Space bar */
    0,  /* Caps lock */
    0,  /* 59 - F1 key ... > */
    0,   0,   0,   0,   0,   0,   0,   0,
    0,  /* < ... F10 */
    0,  /* 69 - Num lock*/
    0,  /* Scroll Lock */
    0,  /* Home key */
    0,  /* Up Arrow */
    0,  /* Page Up */
   '-',
    0,  /* Left Arrow */
    0,
    0,  /* Right Arrow */
   '+',
    0,  /* 79 - End key*/
    0,  /* Down Arrow */
    0,  /* Page Down */
    0,  /* Insert Key */
    0,  /* Delete Key */
    0,   0,   0,
    0,  /* F11 Key */
    0,  /* F12 Key */
    0,  /* All other keys are undefined */
};      


unsigned int restart_keyboard()
{    
   int data = inb(0x61);     
   outb(0x61,data | 0x80);//Disables the keyboard  
   outb(0x61,data & 0x7F);//Enables the keyboard  
   return 0;
}



unsigned char get_scancode()
{
    unsigned char inputdata;
    inputdata = inb(0x60);
    return inputdata;
}
static void keyboard_handler(registers_t regs)
{ 
     unsigned char scancode; 
     unsigned int shift_key = 0;
     scancode = get_scancode();
     if(scancode == 0x2A)     
     {  
          shift_key = 1;//Shift key is pressed
     }      
     else if(scancode & 0xAA)   
     {  
          int shift_key= 0;//Shift Key is not pressed
     }      
     else    
     {          
         if (scancode & 0x80)   
         {  
              int shiftaltctrl = 1;//Put anything to see what special keys were pressed  
         }
         else
         {   

              monitor_put(kblayout[scancode]); //Prints the character which was     pressed         
         }     
     }
}

void keyboard_install()
{
register_interrupt_handler(33, keyboard_handler);
}

main.c:內核

#include "monitor.h"
#include "descriptor_tables.h"
#include "timer.h"
#include "keyboard.h"

int main(struct multiboot *mboot_ptr)
{
    // Initialise all the ISRs and segmentation
    init_descriptor_tables();
    // Initialise the screen (by clearing it)
    monitor_clear();
    // Write out a sample string
    monitor_write("Hello, world!\n");
    keyboard_install();

    return 0;
}

所有其他文件都相同。 它運行正常,但它不打印輸出,我無法弄清楚為什么:(我正在用qemu運行它。

它顯示您好世界,但不顯示按鍵

問題是我在內核的啟動代碼中禁用了中斷后沒有恢復中斷,而是使用asm voltile("sti")恢復了中斷

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM