Mercurial > lcfOS
annotate README.md @ 261:444b9df2ed99
try to split up code generation
author | Windel Bouwman |
---|---|
date | Fri, 09 Aug 2013 09:05:13 +0200 |
parents | 703321743e8a |
children |
rev | line source |
---|---|
187 | 1 |
188 | 2 # Project goals |
256 | 3 * To write a microkernel OS. |
4 * Write the kernel in C3 ('cos') | |
9
92ace1ca50a8
64 bits kernel without interrupts but with printf in C
windel
parents:
1
diff
changeset
|
5 * Write a kernel in oberon like language and be able to compile this with the ide. |
92ace1ca50a8
64 bits kernel without interrupts but with printf in C
windel
parents:
1
diff
changeset
|
6 * Create python scripts that form the major part of the OS. |
92ace1ca50a8
64 bits kernel without interrupts but with printf in C
windel
parents:
1
diff
changeset
|
7 * Make IDE in python that can compile the OS. |
92ace1ca50a8
64 bits kernel without interrupts but with printf in C
windel
parents:
1
diff
changeset
|
8 |
188 | 9 # Directory structure |
10 | |
9
92ace1ca50a8
64 bits kernel without interrupts but with printf in C
windel
parents:
1
diff
changeset
|
11 'os' contains the os written in oberon like language. |
92ace1ca50a8
64 bits kernel without interrupts but with printf in C
windel
parents:
1
diff
changeset
|
12 'ide' contains the python3 qt4 ide to build the os. |
92ace1ca50a8
64 bits kernel without interrupts but with printf in C
windel
parents:
1
diff
changeset
|
13 'cos' contains the os written in C and assembler. |
92ace1ca50a8
64 bits kernel without interrupts but with printf in C
windel
parents:
1
diff
changeset
|
14 |
188 | 15 # Software dependencies |
1 | 16 * python3 |
17 * pyqt4 | |
18 | |
188 | 19 # How to start the IDE |
1 | 20 |
213 | 21 cd python |
256 | 22 python ide.py |
23 | |
24 # Run unittests | |
25 | |
257 | 26 cd python |
27 python -m unittest | |
41 | 28 |
213 | 29 [![Build Status](https://drone.io/bitbucket.org/windel/lcfos/status.png)](https://drone.io/bitbucket.org/windel/lcfos/latest) |
43 | 30 |
41 | 31 |