OLD | NEW |
| (Empty) |
1 // Copyright 2009 The Native Client Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can | |
3 // be found in the LICENSE file. | |
4 using Microsoft.VisualStudio.Debugger.Interop; | |
5 | |
6 namespace Google.MsAd7.BaseImpl.DebugProperties { | |
7 class Register : DebugPropertyBase { | |
8 public Register(DebugPropertyBase parent, string name) | |
9 : base(parent, | |
10 name, | |
11 "int", | |
12 0, | |
13 0, | |
14 enum_DBG_ATTRIB_FLAGS.DBG_ATTRIB_DATA | |
15 | enum_DBG_ATTRIB_FLAGS.DBG_ATTRIB_STORAGE_REGISTER, | |
16 null) {} | |
17 | |
18 public override string FormatValue() { | |
19 return string.Format("{0:X16}", Value); | |
20 } | |
21 } | |
22 } | |
OLD | NEW |