mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
10 lines
No EOL
419 B
C#
10 lines
No EOL
419 B
C#
namespace Cosmos.Assembler.x86 {
|
|
[Cosmos.Assembler.OpCode("int")]
|
|
public class INT : InstructionWithDestination {
|
|
public override void WriteText( Cosmos.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);
|
|
}
|
|
}
|
|
} |