Added support for the shift key in the keyboard driver.

This commit is contained in:
2018-11-11 16:31:41 -06:00
parent af15d43c8a
commit a061366ff2
6 changed files with 36 additions and 6 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
#ifndef __SYSTEM_H
#define __SYSTEM_H
/* Primitives */
typedef enum { false, true } bool;
/* MAIN.C */
extern unsigned char *memcpy(unsigned char *dest, const unsigned char *src, int count);
extern unsigned char *memset(unsigned char *dest, unsigned char val, int count);