mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
16 lines
412 B
C#
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);
|
|
}
|
|
}
|
|
}
|