Cosmos/source/Indy.IL2CPU.Assembler/JumpIfZero.cs
mterwoord_cp c09c0f2459
2007-08-30 17:33:25 +00:00

16 lines
No EOL
352 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler {
public class JumpIfZero: Instruction {
public readonly string Address;
public JumpIfZero(string aAddress) {
Address = aAddress;
}
public override string ToString() {
return "jz " + Address;
}
}
}