Updates readme.md
This commit is contained in:
parent
6cea5944c3
commit
fc3f73fe16
2 changed files with 16 additions and 5 deletions
18
README.md
18
README.md
|
@ -1,7 +1,17 @@
|
|||
# trainOS
|
||||
|
||||
An operating system built around the language "trainscript" which is used to execute
|
||||
all user code in a virtual machine.
|
||||
## Description
|
||||
An operating system built around the language "trainscript" which is used to execute all user code in a virtual machine.
|
||||
|
||||
## Current status:
|
||||
The vm can execute some code and is able to call native code. Also it leaks memory. A lot of memory.
|
||||
|
||||
## Todo List
|
||||
- Kernel Status Bar (Memory Usage, ...)
|
||||
- Fixing Memory Leaks
|
||||
- Using "stack allocator" for parsing process
|
||||
- Adding signature parser for NativeMethod
|
||||
- Adding support for Modules
|
||||
- Adding support for Pointer Types
|
||||
- Adding support for String Type
|
||||
|
||||
Current status:
|
||||
The vm can execute some code and is able to call native code.
|
||||
|
|
|
@ -56,7 +56,8 @@ DISTFILES += \
|
|||
Depfile \
|
||||
Makefile.new \
|
||||
scripts/main.ts \
|
||||
asm/dynamic.S
|
||||
asm/dynamic.S \
|
||||
README.md
|
||||
|
||||
QMAKE_INCDIR =
|
||||
|
||||
|
|
Loading…
Reference in a new issue