mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 13:51:02 +00:00
9 lines
No EOL
331 B
C#
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);
|
|
}
|
|
}
|
|
} |