mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-04 23:31:37 +00:00
17 lines
414 B
C#
17 lines
414 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86.X {
|
|
public class Ports {
|
|
public PortNumber this[RegisterDX aDX] {
|
|
get {
|
|
return new PortNumber(aDX.GetId());
|
|
}
|
|
set {
|
|
new X86.Out {DestinationReg=Registers.EAX};
|
|
}
|
|
}
|
|
}
|
|
}
|