Skip to content

Commit

Permalink
Remove v1.2 preview level, change (c) text (#10)
Browse files Browse the repository at this point in the history
- Set PREVIEW_LEVEL to 0 so the N80 version is simply 1.2
- Change the N80 help text to mention the Z280 and change the (c) year to 2024
  • Loading branch information
Konamiman authored Apr 1, 2024
1 parent 400abae commit ca63b5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions N80/Program.Help.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ namespace Konamiman.Nestor80.N80
internal partial class Program
{
static readonly string bannerText = """
Nestor80 - The Z80 assembler for the 21th century
(c) Konamiman 2023
Nestor80 - The Z80 and Z280 assembler for the 21th century
(c) Konamiman 2024

""";

Expand Down
2 changes: 1 addition & 1 deletion N80/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace Konamiman.Nestor80.N80
/// </summary>
internal partial class Program
{
const int PREVIEW_LEVEL = 1;
const int PREVIEW_LEVEL = 0;

const int ERR_SUCCESS = 0;
const int ERR_BAD_ARGUMENTS = 1;
Expand Down

0 comments on commit ca63b5e

Please sign in to comment.