Skip to content

Commit

Permalink
- v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tgiphil committed May 4, 2014
1 parent 3f722e8 commit 6822915
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Source/Mosa.CoolWorld.x86/Boot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static void Main()
Console.Color = Colors.White;
Console.BackgroundColor = Colors.Green;

Console.Write(@" MOSA OS Version 1.2 - Compiler Version 1.2");
Console.Write(@" MOSA OS Version 1.3 - Compiler Version 1.3");
FillLine();
Console.Color = Colors.White;
Console.BackgroundColor = Colors.Black;
Expand Down
4 changes: 2 additions & 2 deletions Source/Mosa.Emulator/HelloWorld/Boot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ public static void Main()
Screen.GotoTop();
Screen.Color = Colors.Yellow;

Screen.Write(@"MOSA OS Version 1.0 '");
Screen.Write(@"MOSA OS Version 1.3 '");
Screen.Color = Colors.Red;
Screen.Write(@"Titan");
Screen.Write(@"Neptune");
Screen.Color = Colors.Yellow;
Screen.Write(@"' Copyright 2008-2011");
Screen.NextLine();
Expand Down
4 changes: 2 additions & 2 deletions Source/Mosa.HelloWorld.x86/Boot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ public static void Main()
Console.Color = Colors.Yellow;
Console.BackgroundColor = Colors.Black;

Console.Write(@"MOSA OS Version 1.2 '");
Console.Write(@"MOSA OS Version 1.3 '");
Console.Color = Colors.Red;
Console.Write(@"Titan");
Console.Write(@"Neptune");
Console.Color = Colors.Yellow;
Console.Write(@"' Copyright 2008-2012");
Console.WriteLine();
Expand Down
4 changes: 2 additions & 2 deletions Source/Mosa.Tool.Compiler/Compiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ public class Compiler
private OptionSet optionSet;

private readonly int majorVersion = 1;
private readonly int minorVersion = 2;
private readonly string codeName = @"Titan";
private readonly int minorVersion = 3;
private readonly string codeName = @"Neptune";

/// <summary>
/// A string holding a simple usage description.
Expand Down

0 comments on commit 6822915

Please sign in to comment.