Skip to content

Commit

Permalink
Updating screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
Pto Buon committed Mar 24, 2022
1 parent 63fec19 commit dee5c15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions Docs/articles/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ assembly is used by all Cosmos projects.
## Code Based Breakpoints


Debugger.Break();
mDebugger.Break();

Break can be used to issue a code based break. Visual Studio will break on the
line after this statement.
Expand All @@ -100,7 +100,7 @@ base breaks are very useful for implementing such. For example:


if (x == 5) {
Debugger.Break();
mDebugger.Break();
}

Alternatively you can call the .NET class libary break:
Expand All @@ -117,7 +117,7 @@ does not support watches yet, this functionality can be very useful for
watching variable values and for performing tracing without breakpoints.


Debugger.Send("Hello from Cosmos!");
mDebugger.Send("Hello from Cosmos!");

When this line is executed, it will send a message over the debugging channel
and it will appear in the Visual Studio output window.
Expand All @@ -133,12 +133,6 @@ foreach loops), file systems (partial support exists), threads, networking, and
graphics. We have prototypes and experimentation for each, but none have been
rolled into the mainline Cosmos development as of yet.

## What was that Syslinux thing I saw on boot?

Cosmos does not run on Linux. A boot loader called Syslinux is used to boot
Cosmos. After booting, Syslinux is not used. Syslinux is a bootloader and is
not a Linux distro. Syslinux simplifies the booting process by doing tasks such as enabling the A20 gate, initializing hardware, and switching to real mode (all of which are required by modern operating systems).

## Obtaining Cosmos

* Cosmos Website - [http://www.GoCosmos.org](http://www.GoCosmos.org)
Expand Down
Binary file modified Docs/articles/images/SNAG-0003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Docs/articles/images/SNAG-0008.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit dee5c15

Please sign in to comment.