kern

annotate src/main.c @ 2:86781ef20689

added hardware scrolling, memset16 and temporary keyboard input for testing
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 04 Dec 2010 08:04:43 +0200
parents ebe5e0e44a9d
children 611b2d66420b
rev   line source
nuclear@1 1 #include <stdio.h>
nuclear@0 2 #include "vid.h"
nuclear@1 3 #include "term.h"
nuclear@2 4 #include <asmops.h>
nuclear@2 5
nuclear@2 6 /* special keys */
nuclear@2 7 enum {
nuclear@2 8 LALT, RALT,
nuclear@2 9 LCTRL, RCTRL,
nuclear@2 10 LSHIFT, RSHIFT,
nuclear@2 11 F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12,
nuclear@2 12 CAPSLK, NUMLK, SCRLK, SYSRQ,
nuclear@2 13 ESC = 27,
nuclear@2 14 INSERT, DEL, HOME, END, PGUP, PGDN, LEFT, RIGHT, UP, DOWN,
nuclear@2 15 NUM_DOT, NUM_ENTER, NUM_PLUS, NUM_MINUS, NUM_MUL, NUM_DIV,
nuclear@2 16 NUM_0, NUM_1, NUM_2, NUM_3, NUM_4, NUM_5, NUM_6, NUM_7, NUM_8, NUM_9,
nuclear@2 17 BACKSP = 127
nuclear@2 18 };
nuclear@2 19
nuclear@2 20 /* table with rough translations from set 1 scancodes to ASCII-ish */
nuclear@2 21 static int keycodes[] = {
nuclear@2 22 0, ESC, '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '-', '=', '\b', /* 0 - e */
nuclear@2 23 '\t', 'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', '[', ']', '\n', /* f - 1c */
nuclear@2 24 LCTRL, 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', ';', '\'', '`', /* 1d - 29 */
nuclear@2 25 LSHIFT, '\\', 'z', 'x', 'c', 'v', 'b', 'n', 'm', ',', '.', '/', RSHIFT, /* 2a - 36 */
nuclear@2 26 NUM_MUL, LALT, ' ', CAPSLK, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, /* 37 - 44 */
nuclear@2 27 NUMLK, SCRLK, NUM_7, NUM_8, NUM_9, NUM_MINUS, NUM_4, NUM_5, NUM_6, NUM_PLUS, /* 45 - 4e */
nuclear@2 28 NUM_1, NUM_2, NUM_3, NUM_0, NUM_DOT, SYSRQ, 0, 0, F11, F12, /* 4d - 58 */
nuclear@2 29 0, 0, 0, 0, 0, 0, 0, /* 59 - 5f */
nuclear@2 30 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 60 - 6f */
nuclear@2 31 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* 70 - 7f */
nuclear@2 32 };
nuclear@2 33
nuclear@0 34
nuclear@0 35 void kmain(void)
nuclear@0 36 {
nuclear@2 37 clear_scr();
nuclear@2 38 puts("kernel starting up");
nuclear@2 39
nuclear@2 40 set_text_color(YELLOW);
nuclear@2 41 puts("<initialization code goes here>");
nuclear@2 42 set_text_color(LTGRAY);
nuclear@1 43 puts("hello world!");
nuclear@2 44
nuclear@2 45 for(;;) {
nuclear@2 46 char c, keypress;
nuclear@2 47 do {
nuclear@2 48 inb(keypress, 0x64);
nuclear@2 49 } while(!(keypress & 1));
nuclear@2 50 inb(c, 0x60);
nuclear@2 51 if(!(c & 0x80)) {
nuclear@2 52 putchar(keycodes[c]);
nuclear@2 53 }
nuclear@2 54 }
nuclear@0 55 }