在C内核保护模式下无法获取键盘输入

3

我正在使用C语言和32位汇编制作操作系统,按照James Molloy的教程进行开发,直到IRQs和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运行它。
它会打印“Hello World”,但不会打印按键。

它连“Hello, world!”都不打印吗?还是实际的按键? - Ishay Peled
什么是离题的,我不认为它是。 - Arnav Jain
为了确保不是一些愚蠢的问题 - 从处理程序中打印一个常量字符串,以隔离您是否在读取扫描码或注册中断时遇到问题。 - Ishay Peled
我的意思是,我的评论与主题无关。 - Ryan
在按键处理函数中添加了一个打印语句,但是没有任何输出。 - Arnav Jain
显示剩余5条评论
1个回答

1
问题在于,在内核的引导代码中,我没有恢复中断,而是使用了asm voltile("sti")来恢复中断。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接