xenia/src/Xenia.Debug/Callstack.cs

29 lines
815 B
C#
Raw Normal View History

2015-06-11 06:19:17 +02:00
/**
******************************************************************************
* Xenia : Xbox 360 Emulator Research Project *
******************************************************************************
* Copyright 2015 Ben Vanik. All rights reserved. *
* Released under the BSD license - see LICENSE in the root for more details. *
******************************************************************************
*/
using System;
2015-05-22 23:58:56 +02:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Xenia.Debug {
public class Callstack {
2015-05-24 22:43:15 +02:00
public class Frame {
// function
// address
// stack pointer
// possible to get args?
}
// thread
// frames
2015-05-22 23:58:56 +02:00
}
}