Daniel Collin

Results 324 comments of Daniel Collin

I would say it's still useable in a limited context (you have data setup and want to run some 68k on that limited set) Things I think should be fixed...

Problem with including a binary for Windows is that if someone is using it on Linux (or some other OS) it won't work so better to bulid from source. Musashi...

Build the generater and just run it is fairly simple so I don't think it such a big issue really. The generation isn't what takes the time it's actually compiling...

Would it be possible to publish the different parts (or one crate with opt-in on what you need) on crates.io? Would make it easier to use in projects then :)

Having a callback happen on `trap` instructions would be nice.

Yeah that might work for example on Amiga you have load a library and then you call like this ``` ; a0 = library ptr ; setup some input to...

Override of BSR/JSR sounds interesting for sure but in my case I think having traps is easier. Because otherwise one would have to figure out inside the BSR/JSR callback what...

It would be very limited if you couldn't change the state of your program depending on what happens inside the callback. I could imagine having a an API that looks...

Indeed. I would rather not have it as a global as they are a pain in Rust and that is usually a good thing :)