/* HWKeyTable.S, Copyright (c) by Lukas Ruf, lr@lpr.ch, Swiss Federal Institute of Technology, Computer Engineering and Networks Laboratory. TOPSY -- A Teachable Operating System. Implementation of a tiny and simple micro kernel for teaching purposes. For further information, please visit http://www.tik.ee.ethz.ch/~topsy This software is provided under the terms of the GNU General Public Licence. A full copy of the GNU GPL is provided in the file COPYING found in the development root of Topsy. */ /* File: $Source: /usr/drwho/vault/cvs/topsy/Topsy/IO/Drivers/ia32/HWKeyTable.S,v $ Author(s): Lukas Ruf, lr@lpr.ch Affiliation: ETH Zuerich, TIK Version: $Revision: 1.2 $ Creation Date: Last Date of Change: $Date: 1999/12/13 21:48:26 $ by: $Author: ruf $ $Log: HWKeyTable.S,v $ Revision 1.2 1999/12/13 21:48:26 ruf GNU General Public Licence Update Revision 1.1 1999/06/06 20:58:15 jeker putting everything together for Topsy 2.0 Revision 1.1 1999/05/13 17:05:28 jeker Initial revision */ /* KeyTable.S : Keycode to ASCII Character Table */ /* THIS FILE IS AUTOMATICALLY CREATED BY KEYBOARD */ /* KEYBOARD (c) 1998 Lukas Ruf, lr@lpr.ch */ .data .align 4,0x9090 .globl HWKeyTrlTbl HWKeyTrlTbl: // 000 .byte 0x00, 0x00, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36 // 008 .byte 0x37, 0x38, 0x39, 0x30, 0x15, 0x16, 0x11, 0x10 // 010 .byte 0x4D, 0x53, 0x41, 0x4E, 0x50, 0x56, 0x51, 0x45 // 018 .byte 0x4B, 0x4C, 0x17, 0x18, 0x0D, 0x2C, 0x3D, 0x4F // 020 .byte 0x40, 0x42, 0x43, 0x44, 0x46, 0x47, 0x48, 0x19 // 028 .byte 0x1A, 0x14, 0x2A, 0x1B, 0x55, 0x54, 0x3F, 0x52 // 030 .byte 0x3E, 0x4A, 0x49, 0x1C, 0x1D, 0x61, 0x2B, 0x62 // 038 .byte 0x2E, 0x12, 0x13, 0x01, 0x02, 0x03, 0x04, 0x05 // 040 .byte 0x06, 0x07, 0x08, 0x09, 0x0A, 0x3A, 0x0E, 0x5E // 048 .byte 0x5F, 0x60, 0x63, 0x5B, 0x5C, 0x5D, 0x64, 0x58 // 050 .byte 0x59, 0x5A, 0x57, 0x65, 0x3B, 0x0F, 0x1F, 0x0B // 058 .byte 0x0C, 0x00, 0x0F, 0x3C, 0x66, 0x00, 0x22, 0x26 // 060 .byte 0x00, 0x00, 0x24, 0x27, 0x29, 0x23, 0x28, 0x25 // 068 .byte 0x20, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 /* End of KeyTable.S : Created for Topsy386 */