mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-10-05 00:21:35 +02:00
Update to v094r06 release.
byuu says: New terminal is in. Much nicer to use now. Command history makes a major difference in usability. The SMP is now fully traceable and debuggable. Basically they act as separate entities, you can trace both at the same time, but for the most part running and stepping is performed on the chip you select. I'm going to put off CPU+SMP interleave support for a while. I don't actually think it'll be too hard. Will get trickier if/when we support coprocessor debugging. Remaining tasks: - aliases - hotkeys - save states - window geometry Basically, the debugger's done. Just have to add the UI fluff. I also removed tracing/memory export from higan. It was always meant to be temporary until the debugger was remade.
This commit is contained in:
@@ -36,11 +36,11 @@ inline bool strccat(char* target, const char* source, unsigned length);
|
||||
inline void strpcpy(char*& target, const char* source, unsigned& length);
|
||||
|
||||
//strpos.hpp
|
||||
inline optional<unsigned> strpos(const char* str, const char* key);
|
||||
inline optional<unsigned> istrpos(const char* str, const char* key);
|
||||
inline optional<unsigned> qstrpos(const char* str, const char* key);
|
||||
inline optional<unsigned> iqstrpos(const char* str, const char* key);
|
||||
template<bool Insensitive = false, bool Quoted = false> inline optional<unsigned> ustrpos(const char* str, const char* key);
|
||||
inline maybe<unsigned> strpos(const char* str, const char* key);
|
||||
inline maybe<unsigned> istrpos(const char* str, const char* key);
|
||||
inline maybe<unsigned> qstrpos(const char* str, const char* key);
|
||||
inline maybe<unsigned> iqstrpos(const char* str, const char* key);
|
||||
template<bool Insensitive = false, bool Quoted = false> inline maybe<unsigned> ustrpos(const char* str, const char* key);
|
||||
|
||||
//trim.hpp
|
||||
template<unsigned Limit = 0> inline char* ltrim(char* str, const char* key = " ");
|
||||
|
Reference in New Issue
Block a user