scarybeasts

Results 15 comments of scarybeasts

Yeah, shouldn't be too tricky. We may want it behind a new URL parameter though, unless we want to emulate a printer present by default?

For now, this is unfortunately working as planned. The Mac left shift key maps to the beeb's Caps Lock key. This is because modern macOS does not seem to treat...

I looked at the IOHIDDevice solution and unfortunately I think it got locked down in more modern macOS, such that the user has to authorize the app to use that...

I confess I didn't try IOHIDDevice myself. I read about it, didn't like the sounds of it, and failed to try it.

Thanks for looking into this Tom! This is so cool! To start getting bits landed, would you be willing to split into multiple relatively independent PRs? (That's my personal way...

One further comment on the "jCC 0" fixes, having thought about it some more. Would it make sense to have them all jump to the same place, along the lines...

DWORD PTR should be good -- existing code seems to variously use DWORD PTR, WORD PTR and lots of BYTE PTR!

Thanks Rich! To keep things simpler, I replaced the strndup usage with the more cross-platform compatible combo malloc / snprintf: https://github.com/scarybeasts/beebjit/commit/cd9cf3334b860635b1e1ccee3ecd7fe563e9b806 I added the flags for the package structure warning,...

I don't see the GXR rom loaded in the most recent example. It doesn't have a flag like: -rom 7 roms/gxr.rom

The JIT is slow with the GXR ROM because its presence causes MOS to page the BASIC GXR ROMs excessively. ROM paging is very slow with the JIT because all...