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

15 lines
445 B
C#

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