Cosmos/source2/Debug/Cosmos.Debug.GDB/Global.cs
kudzu_cp a7a2bb9aca
2010-08-28 20:09:21 +00:00

16 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
namespace Cosmos.Debug.GDB {
public class Global {
static public GDB GDB;
static public AsmFile AsmSource;
static public UInt32 FromHex(string aValue) {
return UInt32.Parse(aValue.Substring(2), NumberStyles.HexNumber);
}
}
}