Skip to content

Commit

Permalink
Use natural keyboard layout
Browse files Browse the repository at this point in the history
It's much more helpful for keypresses in the emulator to match the
key legends on the physical keyboard.

Fixes #99
ojwb committed Jan 27, 2025
1 parent f984604 commit 53489a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/emulator.js
Original file line number Diff line number Diff line change
@@ -113,7 +113,9 @@ export class Emulator {
window.localStorage.cmosRam = JSON.stringify(data);
},
});
const config = {};
const config = {
keyLayout: 'natural',
};
this.cpu = new Emulator6502(
Model,
this.dbgr,

0 comments on commit 53489a4

Please sign in to comment.