mbbutler
mbbutler
Hi, Ben. I would be interested in adding support for RISC-V to `ropr`. Would you be amenable to that?
If we can't find a disassembler that covers both then it might work to define a `Disassembler` Trait and `impl` a struct for each architecture using whichever disassembler is suitable...
A property-based rules system sounds like an interesting approach. What other kinds of properties do you think would be relevant? A few properties that come to mind are: - If...
I have run into a similar bug in 8.0.0 when using `recognize` and `consumed` with a `digit0` parser that consumes all: ```rust use nom::{Parser, character::complete::digit0, combinator::recognize}; #[test] fn digit_parser() {...