annotate README @ 1:cb82d9a86b22
added a readme file
author |
John Tsiombikas <nuclear@member.fsf.org> |
date |
Mon, 23 Sep 2013 03:45:39 +0300 |
parents |
|
children |
|
rev |
line source |
nuclear@1
|
1 DOS interrupt-driven keyboard driver.
|
nuclear@1
|
2
|
nuclear@1
|
3 Copyright (C) John Tsiombikas <nuclear@member.fsf.org>
|
nuclear@1
|
4 License: GNU General Public License v3
|
nuclear@1
|
5
|
nuclear@1
|
6 Yes this means that if you use this for anything you must also release it under the GPL.
|
nuclear@1
|
7 See COPYING for the full license text.
|
nuclear@1
|
8
|
nuclear@1
|
9 To use in your programs, just include the files keyb.h, keyb.c, and scancode.h to your
|
nuclear@1
|
10 project. See test.c for a use example, otherwise just check keyb.h, which is heavily
|
nuclear@1
|
11 commented.
|