Cosmos/source2/Compiler/Cosmos.Compiler.Assembler.X86/INT.cs
kudzu_cp bf883e964a
2011-07-18 00:02:27 +00:00

10 lines
No EOL
420 B
C#

namespace Cosmos.Compiler.Assembler.X86 {
[OpCode("int")]
public class INT : InstructionWithDestination {
public override void WriteText( Cosmos.Compiler.Assembler.Assembler aAssembler, System.IO.TextWriter aOutput )
{
//TODO: In base have a property that has the opcode from above and we can reuse it.
aOutput.Write("Int " + DestinationValue);
}
}
}