Cosmos/source2/Compiler/Cosmos.Compiler.Assembler.X86/Interrupt.cs
2011-07-15 03:43:33 +00:00

9 lines
No EOL
331 B
C#

namespace Cosmos.Compiler.Assembler.X86 {
[OpCode("int")]
public class Interrupt : InstructionWithDestination {
public override void WriteText( Cosmos.Compiler.Assembler.Assembler aAssembler, System.IO.TextWriter aOutput )
{
aOutput.Write("Int " + DestinationValue);
}
}
}