naming fix

This commit is contained in:
kudzu_cp 2007-08-29 15:40:17 +00:00
parent 1c5765fa98
commit 3eab4da6fa

View file

@ -11,9 +11,9 @@ using Mono.Cecil.Cil;
namespace Indy.IL2CPU {
public class Engine {
private OpCodeMap mMap = new OpCodeMap();
public void Execute(string assembly, string opAssembly) {
public void Execute(string aAssembly, string opAssembly) {
mMap.LoadOpMapFromAssembly(opAssembly);
AssemblyDefinition xAD = AssemblyFactory.GetAssembly(assembly);
AssemblyDefinition xAD = AssemblyFactory.GetAssembly(aAssembly);
if (xAD.EntryPoint == null)
throw new NotSupportedException("Libraries are not yet supported!");
foreach (Instruction xInstruction in xAD.EntryPoint.Body.Instructions) {