Daniel Lehmann

Results 8 comments of Daniel Lehmann

This patch addresses the decoding issue: https://github.com/NationalSecurityAgency/ghidra/pull/6598

To show the problem, this is the trace when connecting to the short target_description_xml in my risc-v 32 bit emulator: ``` TRACE gdbstub::protocol::recv_packet > --> $OK#9a TRACE gdbstub::protocol::recv_packet > -->...

Once I add the registers, things look as expected: ``` TRACE gdbstub::protocol::recv_packet > --> $OK#9a TRACE gdbstub::protocol::recv_packet > --> $PacketSize=1000;vContSupported+;multiprocess+;QStartNoAckMode+;swbreak+;qXfer:features:read+#fd TRACE gdbstub::protocol::recv_packet > Unknown command: Ok("QThreadSuffixSupported") TRACE gdbstub::protocol::response_writer > -->...

Hey, I'm the author of https://crates.io/crates/arbitrary-int . It seems like this proposal has some overlap with what I've built as a crate, so I can talk a bit about the...

> Hey, I'm the author of https://crates.io/crates/arbitrary-int . It seems like this proposal is very close to what I've built as a crate (I think arbitrary-int is also the closest...

> > Also due to my design decision to base everything on a simple types (no arrays), the maximum number of bits supported is u127. > > I hadn't actually...

By the way, I love this RFC! While arbitrary-int (as well as ux) provide the unusually-sized ints like u48 etc, having a built-in solution will feel more natural and allows...