forked from CosmosOS/Cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request CosmosOS#124 from ARMmaster17/master
Documentation update
- Loading branch information
Showing
8 changed files
with
55 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
For creating your own Cosmos in Express 2010 you need the following: | ||
For creating your own Cosmos in Express 2013 you need the following: | ||
|
||
* Visual Studio Express for C# or VB.NET | ||
* installed Cosmos Kit(User Kit or compiled from checkout (Dev Kit)) | ||
* Visual Studio 2010 Shell (Isolated Shell) | ||
* Visual Studio Express for C# or VB.NET | ||
* installed Cosmos Kit(User Kit or compiled from checkout (Dev Kit)) | ||
* Visual Studio 2013 Shell (Isolated Shell) | ||
|
||
In Visual Studio Express you create a library project, that contain your OS | ||
code, and a project for compiling your OS. | ||
|
||
1. Start Visual Studio Express 2010 and create a project named "Cosmos C# Library". This is the part of your OS for adding Code. Compile this project now for creating the DLL for later use. After that save it. | ||
2. (UNTESTED) Start your Microsoft Visual Studio 2010 Shell and create a Project "Cosmos Project (Empty)". It contains a custom Project that use MSBuild with many tasks to create your OS. Save the project. | ||
3. Copy now the created library with name of your project in the folder of the build project under bin/Debug/ Thats needed else would the added reference in next step not found. | ||
4. Add now the reference to the build project and try to build. When you get a warning that the added assembly is not found, you get "No Kernel Found!". | ||
|
||
1. Start Visual Studio Express 2013 and create a project named "Cosmos C# Library". This is the part of your OS for adding Code. Compile this project now for creating the DLL for later use. After that save it. | ||
2. (UNTESTED) Start your Microsoft Visual Studio 2013 Shell and create a Project "Cosmos Project (Empty)". It contains a custom Project that use MSBuild with many tasks to create your OS. Save the project. | ||
3. Copy now the created library with name of your project in the folder of the build project under bin/Debug/ Thats needed else would the added reference in next step not found. | ||
4. Add now the reference to the build project and try to build. When you get a warning that the added assembly is not found, you get "No Kernel Found!". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
|
||
|
||
There is some basic hand coded assembly which is the first entry point of | ||
Cosmos. From there the first C# entry point is Cosmos.System.Kernel.Start(). | ||
|
||
Cosmos.System.Kernel is an abstract class that each project creates one | ||
descendant of to create the operating system. | ||
On startup, there is some hand-coded assembly that runs before the Cosmos layer kicks in. From there, the C# entry point Cosmos.System.Kernel.Start() is called. | ||
|
||
Cosmos.System.Kernel is an abstract class that forms the Cosmos framework upon which your OS is built upon. |