Sean Cross
Sean Cross
When using something like `openocd` on real hardware, issuing a `continue` resumes the current core, and in fact `openocd` will print out an error if the core begins executing on...
Ah, I see. Would it make sense, then, to print a warning out when a user issues `continue` via GDB and the emulation is stopped? Something like `WARNING: Emulation is...
It looks like `cpu StartGdbServer 3333 true` isn't a valid command, and when I change it to `machine StartGdbServer 3333 true` it doesn't change the behavior at all: ``` (gdb)...
What is the correct way to single-step from the reset vector? Currently I do `stepi` from GDB, which locks up (as per the bug title), then alt-tab over to the...
Won't `mon s` start execution? Or does it start execution and then immediately halt the CPU? This issue is more for the time I've spent trying to figure out what's...
I was able to get it to read the section headers. I've had to make the following modifications: 1. Section names can be more than 8 bytes. If the first...
I have a few questions: 1. Is there any interest in parsing these formats? I'd like to be able to parse these object files from TI, but if there's no...
The goal for all of this is to understand the flashing process used by TI. To that end, I've set up [unicorn-engine](https://crates.io/crates/unicorn-engine) to execute routines based on their flashing API,...
Also, you're right, this works for an implementation of `name_offset(&self)`{ ```rust /// Return the string table offset of the section name. /// /// Returns `Ok(None)` if the name doesn't use...
I'm proposing this change because in probe-rs I keep getting errors along the lines of "An error occurred in probe-rs" with no additional context, because they rely heavily on `thiserror`...