Skip to content

Commit d41dbb7

Browse files
authored
Merge pull request #1 from lightszero/master
merge
2 parents 94e1b5e + efa7d7c commit d41dbb7

21 files changed

Lines changed: 1755 additions & 1114 deletions

File tree

CLRSharp/CLRSharp/CLRSharp_Env.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public string version
1111
{
1212
get
1313
{
14-
return "0.47Beta";
14+
return "0.50.1Beta";
1515
}
1616
}
1717
public ICLRSharp_Logger logger

CLRSharp/CLRSharp/Execute/Context.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ void RunCode(StackFrame stack, CodeBody body)
600600
stack.Bgt_Un(_code.tokenAddr_Index);
601601
break;
602602
case CodeEx.Bgt_Un_S:
603-
stack.Bge_Un(_code.tokenAddr_Index);
603+
stack.Bgt_Un(_code.tokenAddr_Index);
604604
break;
605605
case CodeEx.Ble:
606606
stack.Ble(_code.tokenAddr_Index);
@@ -624,7 +624,7 @@ void RunCode(StackFrame stack, CodeBody body)
624624
stack.Blt_Un(_code.tokenAddr_Index);
625625
break;
626626
case CodeEx.Blt_Un_S:
627-
stack.Ble_Un(_code.tokenAddr_Index);
627+
stack.Blt_Un(_code.tokenAddr_Index);
628628
break;
629629
//逻辑计算
630630
case CodeEx.Ceq:

0 commit comments

Comments
 (0)