projects
/
mdlife
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
foo
[mdlife]
/
src
/
main.c
1
#include "z80.h"
2
#include "vdp.h"
3
#include "debug.h"
4
5
int main(void)
6
{
7
z80_init();
8
vdp_init();
9
dbg_init();
10
11
vdp_setcolor(0, 0, 2, 2, 2);
12
vdp_setcolor(0, 15, 15, 15, 15);
13
14
dbg_printstr(0, 0, "Mindlapse");
15
16
return 0;
17
}