log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
lcfOS
annotate user/init.c3 @ 393:
6ae782a085e0
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Added init program
author
Windel Bouwman
date
Sat, 17 May 2014 21:17:40 +0200
parents
children
rev
line source
393
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
1
module init;
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
2
import lib;
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
3
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
4
/*
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
5
Initial program run by the system.
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
6
*/
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
7
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
8
function void start()
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
9
{
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
10
lib.print("Welcome to lcfos");
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
11
}
6ae782a085e0
Added init program
Windel Bouwman
parents:
diff
changeset
12