mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 13:58:47 +00:00
16 lines
490 B
C#
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());
|
|
}
|
|
}
|
|
}
|