Cosmos/source/Indy.IL2CPU/Assembler/x86/Interrupt.cs
mterwoord_cp 8b8be0c28d
2008-11-29 17:26:44 +00:00

14 lines
No EOL
375 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
[OpCode("int")]
public class Interrupt : InstructionWithDestination {
public override string ToString() {
//if (Number == INTO) return "into";
return "int " + DestinationValue;
}
}
}