dos3d
diff README @ 0:f04884489bad
dos3d initial import
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 21 Nov 2011 06:14:01 +0200 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/README Mon Nov 21 06:14:01 2011 +0200 1.3 @@ -0,0 +1,17 @@ 1.4 +A short trip back in time in the days of 16bit graphics programming for MS-DOS 1.5 +in VGA mode 13h. 1.6 + 1.7 +Copyright (C) 2011 John Tsiombikas <nuclear@member.fsf.org> 1.8 +Feel free to use, modify and redistribute this code under the terms of the GNU 1.9 +General Public License version 3 (or at your option any later version published 1.10 +by the free software foundation). See COPYING for details. 1.11 + 1.12 +interesting source code files: 1.13 +- mingl.c: quick & dirty 256-color renderer with a vaguely GL-like interface. 1.14 +- vga.c: denthoresque vga mode 13h driver. 1.15 +- timer.c: DOS timer and 8254 code. 1.16 + 1.17 +To compile this you need Borland C, any version should do. Just type make. 1.18 + 1.19 +Special thanks to the vim project for providing a DOS version of vim, without it 1.20 +this would be much less enjoyable.