Skip to content

Commit 6b916a6

Browse files
committed
restore v1.0.1
1 parent 701fdd6 commit 6b916a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+477
-1221
lines changed

examples/Defines.nsl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
OutFile("Defines.exe");
2-
ShowInstDetails("show");
32
XPStyle("on");
43
RequestExecutionLevel("admin");
4+
ShowInstDetails("show");
55

66
section Test()
77
{

examples/Factorial.nsl

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
OutFile("Factorial.exe");
1+
OutFile("Test.exe");
22
ShowInstDetails("show");
3-
XPStyle("on");
4-
RequestExecutionLevel("admin");
53

64
/*
75
Modified from http://introcs.cs.princeton.edu/23recursion/Fibonacci.java.html

examples/Fibonacci.nsl

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
OutFile("Fibonacci.exe");
1+
OutFile("Test.exe");
22
ShowInstDetails("show");
3-
XPStyle("on");
4-
RequestExecutionLevel("admin");
53

64
/*
75
Modified from http://introcs.cs.princeton.edu/23recursion/Fibonacci.java.html

examples/Gcd.nsl

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
OutFile("Gcd.exe");
1+
OutFile("Test.exe");
22
ShowInstDetails("show");
3-
XPStyle("on");
4-
RequestExecutionLevel("admin");
53

64
/*
75
Modified from http://en.wikipedia.org/wiki/Binary_GCD_algorithm

examples/Install.nsl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define Version '1.0.2'
1+
#define Version '1.0.1'
22

33
Name("nsL Assembler ".Version." (Alpha)");
44
OutFile("nsL-Assembler-".Version.".exe");

examples/Logic.nsl

-84
This file was deleted.

examples/Loops.nsl

-102
This file was deleted.

examples/Macros.nsl

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
OutFile("Macros.exe");
2-
ShowInstDetails("show");
32
XPStyle("on");
43
RequestExecutionLevel("admin");
4+
ShowInstDetails("show");
55

66
section Test()
77
{
@@ -44,9 +44,9 @@ section Test()
4444

4545
// Tests return values that are jump instructions.
4646
if (AskQuestion("Click Yes or No?"))
47-
DetailPrint("You clicked Yes!");
47+
DetailPrint("You clicked yes!");
4848
else
49-
DetailPrint("You clicked No!");
49+
DetailPrint("You clicked no!");
5050

5151
// Sets all registers being assigned to to 0. The number of registers
5252
// being assigned to is stored in the assembler-defined Returns macro

examples/Optimisations.nsl

-24
This file was deleted.

examples/Switches.nsl

-43
This file was deleted.

0 commit comments

Comments
 (0)