Mason Ginter
Mason Ginter
While we're adding better IRQ handling, would it be a good idea to work on #150? The examples seem to be the only problem in the CI. I was able...
I forked your randomize repo, and tried implemented 32->32 bit PCG-RXS-M-XS. You can find it [here](https://github.com/Hpmason/randomize). I think I implemented it correctly and I made 2 ROMs comparing the original...
Is it possible to create a IRQ trait that can be used with a struct? something along the lines of: ```rust trait IRQ { #[instruction_set(arm::a32)] /// default impl that should...
Instead of having to reimplement the `irq_handler_t32`/`irq_handler_a32`, in my example `handler`, you could impl the IRQ trait and only override the IRQ handler you want. So if you want a...
By enforcing it, do you mean if the default methods (equivalents to `irq_handler_t32` and `irq_handler_a32` ) overriden? Is there another way to enforce the user does those tasks in the...
Could we use the `InterruptFlags` struct as a const bit field for this to be optimized away?
So, I created an implementation using a trait, but it requires building release or setting opt-level >= 1 in order to optimize away the unused handlers. And I've tried using...
I'm running into the same issue. Seems to be due to building the Skia library manually instead of using prebuilt. I have a project with an empty main.rs with the...
I saw you've changed a lot with the build process and I've tried building again, and it works without errors. I don't know if it is working on @BigBadaboom's side...