Import backup from 2003-09-30
This commit is contained in:
parent
82da40c9f0
commit
3dc0fe5e2b
5
kernel.c
5
kernel.c
@ -43,6 +43,11 @@ void k_init()
|
|||||||
video_rectf(VXR*5/11, VYR/5, VXR*6/11, VYR*4/5, 0x00000088);
|
video_rectf(VXR*5/11, VYR/5, VXR*6/11, VYR*4/5, 0x00000088);
|
||||||
video_rectf(VXR*9/11, VYR/5, VXR-1, VYR*2/5, 0x00000088);
|
video_rectf(VXR*9/11, VYR/5, VXR-1, VYR*2/5, 0x00000088);
|
||||||
video_rectf(VXR*8/11, VYR*3/5, VXR*10/11, VYR*4/5, 0x00000088);
|
video_rectf(VXR*8/11, VYR*3/5, VXR*10/11, VYR*4/5, 0x00000088);
|
||||||
|
|
||||||
|
video_vert(10, 10, 16, 0x00ffff00); //should be yellow 'H'
|
||||||
|
video_horiz(13, 10, 14, 0x00ffff00);
|
||||||
|
video_vert(14, 10, 16, 0x00ffff00);
|
||||||
|
|
||||||
mm_init();
|
mm_init();
|
||||||
enable_ints();
|
enable_ints();
|
||||||
console_cls();
|
console_cls();
|
||||||
|
7
tetris.c
Normal file
7
tetris.c
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
|
||||||
|
// tetris.x
|
||||||
|
// Author: Josh Holtrop
|
||||||
|
// Date: 09/30/03
|
||||||
|
|
||||||
|
|
||||||
|
|
27
vmm.c
Normal file
27
vmm.c
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
// vmm.c
|
||||||
|
// Author: Josh Holtrop
|
||||||
|
// Date: 09/30/03
|
||||||
|
|
||||||
|
|
||||||
|
void *malloc(dword bytes)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int free(void *ptr);
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user