This commit is contained in:
smremde_cp 2008-08-01 09:59:50 +00:00
parent 4a0b6b0fdb
commit efebaf20cb
2 changed files with 5 additions and 2 deletions

View file

@ -17,7 +17,7 @@ namespace Indy.IL2CPU.Assembler.X86
}
public override string ToString()
{
return "jnz " + Address;
return "jnz near " + Address;
}
}
}

View file

@ -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";
}
}
}