mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
37 lines
944 B
C#
37 lines
944 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.IL2CPU.X86.X {
|
|
public class AddressDirect : Address {
|
|
public readonly string Label;
|
|
public readonly uint Address;
|
|
public readonly RegistersEnum? Register;
|
|
|
|
public AddressDirect(RegistersEnum aRegister)
|
|
{
|
|
Register = aRegister;
|
|
}
|
|
|
|
public AddressDirect(UInt32 aAddress) {
|
|
Address= aAddress;
|
|
}
|
|
|
|
public AddressDirect(string aLabel) {
|
|
Label = aLabel;
|
|
}
|
|
|
|
public override string ToString() {
|
|
if (Label == null) {
|
|
return Address.ToString();
|
|
} else {
|
|
if (Register != null) {
|
|
return Registers.GetRegisterName(Register.Value);
|
|
}
|
|
return Label;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|