diff --git a/source/Indy.IL2CPU.Assembler.X86/JumpIfNotZero.cs b/source/Indy.IL2CPU.Assembler.X86/JumpIfNotZero.cs index c16aad4e8..16afcafed 100644 --- a/source/Indy.IL2CPU.Assembler.X86/JumpIfNotZero.cs +++ b/source/Indy.IL2CPU.Assembler.X86/JumpIfNotZero.cs @@ -17,7 +17,7 @@ namespace Indy.IL2CPU.Assembler.X86 } public override string ToString() { - return "jnz " + Address; + return "jnz near " + Address; } } } diff --git a/source/Indy.IL2CPU.IL/CustomImplementations/System/NumberImpl.cs b/source/Indy.IL2CPU.IL/CustomImplementations/System/NumberImpl.cs index dd9378799..faf71c5df 100644 --- a/source/Indy.IL2CPU.IL/CustomImplementations/System/NumberImpl.cs +++ b/source/Indy.IL2CPU.IL/CustomImplementations/System/NumberImpl.cs @@ -14,7 +14,10 @@ namespace Indy.IL2CPU.IL.CustomImplementations.System public static string FormatInt32(int aInt, string aStr, NumberFormatInfo aFormat) { return "this is a test - fix me in Indy.IL2CPU.IL.CustomImplementations.System.NumberImpl.FormatInt32"; - + } + public static string FormatDouble(double aInt, string aStr, NumberFormatInfo aFormat) + { + return "this is a test - fix me in Indy.IL2CPU.IL.CustomImplementations.System.NumberImpl.FormatDouble"; } } } \ No newline at end of file