xenia/src/Xenia.Debug/Callstack.cs
2015-06-10 23:31:32 -07:00

29 lines
815 B
C#

/**
******************************************************************************
* 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;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Xenia.Debug {
public class Callstack {
public class Frame {
// function
// address
// stack pointer
// possible to get args?
}
// thread
// frames
}
}