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