mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-23 06:18:54 +00:00
15 lines
445 B
C#
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");
|
|
}
|
|
}
|
|
}
|