Cosmos/source/Cosmos.Assembler/x86/OutToDX.cs
Matthijs ter Woord 91d891244c .
2016-06-12 09:25:09 -04:00

16 lines
490 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Assembler.x86 {
[Cosmos.Assembler.OpCode("out")]
public class OutToDX : InstructionWithDestinationAndSize {
public override void WriteText( Cosmos.Assembler.Assembler aAssembler, System.IO.TextWriter aOutput )
{
aOutput.Write(mMnemonic);
aOutput.Write(" DX, ");
aOutput.Write(this.GetDestinationAsString());
}
}
}