├── .gitignore ├── IMG └── cube13h.gif ├── LICENSE ├── MAKEFILE ├── README.md └── SRC ├── CUBE13H.C ├── KEYBRD.C ├── KEYBRD.H ├── MAT.C ├── MAT.H ├── MATH.C ├── MATH.H ├── MEM.ASM ├── MEM.H ├── RENDERER.C ├── RENDERER.H ├── TRINGL.C ├── TRINGL.H ├── VEC.C ├── VEC.H ├── VGA.C └── VGA.H /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/.gitignore -------------------------------------------------------------------------------- /IMG/cube13h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/IMG/cube13h.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/LICENSE -------------------------------------------------------------------------------- /MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/MAKEFILE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/README.md -------------------------------------------------------------------------------- /SRC/CUBE13H.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/CUBE13H.C -------------------------------------------------------------------------------- /SRC/KEYBRD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/KEYBRD.C -------------------------------------------------------------------------------- /SRC/KEYBRD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/KEYBRD.H -------------------------------------------------------------------------------- /SRC/MAT.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/MAT.C -------------------------------------------------------------------------------- /SRC/MAT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/MAT.H -------------------------------------------------------------------------------- /SRC/MATH.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/MATH.C -------------------------------------------------------------------------------- /SRC/MATH.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/MATH.H -------------------------------------------------------------------------------- /SRC/MEM.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/MEM.ASM -------------------------------------------------------------------------------- /SRC/MEM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/MEM.H -------------------------------------------------------------------------------- /SRC/RENDERER.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/RENDERER.C -------------------------------------------------------------------------------- /SRC/RENDERER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/RENDERER.H -------------------------------------------------------------------------------- /SRC/TRINGL.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/TRINGL.C -------------------------------------------------------------------------------- /SRC/TRINGL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/TRINGL.H -------------------------------------------------------------------------------- /SRC/VEC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/VEC.C -------------------------------------------------------------------------------- /SRC/VEC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/VEC.H -------------------------------------------------------------------------------- /SRC/VGA.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/VGA.C -------------------------------------------------------------------------------- /SRC/VGA.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xms0g/cube13h/HEAD/SRC/VGA.H --------------------------------------------------------------------------------