rjanicek / vice.js

Versatile Commodore Emulator for JavaScript
152 stars 25 forks source link

" key not working #9

Closed saavor closed 6 years ago

saavor commented 6 years ago

the " key does not function correctly

This does not allow print to function.

Sgeo commented 6 years ago

This vice.js build is using something approximating the positional keyboard. The C64 had its " key on shift-2, so press that.

There might be browser-specific variations in some other keys, because Emscripten's SDL1 implementation isn't very portable.

I'm working on a build that defaults to symbolic keymapping (" on PC = " in emulator) and can be switched to positional, and won't have oddities in different browsers. Mostly just fixing the Emscripten SDL1 implementation.

saavor commented 6 years ago

ok