mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
15 lines
370 B
C#
15 lines
370 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 UInt32 FromHex(string aValue) {
|
|
return UInt32.Parse(aValue.Substring(2), NumberStyles.HexNumber);
|
|
}
|
|
}
|
|
}
|