浏览代码

mmSwitchRegister() finished.

master
Bryan Miller 5 年前
父节点
当前提交
9a50ab2514
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. +4
    -1
      src/mmc.js

+ 4
- 1
src/mmc.js 查看文件

mmSwitchRegister(){ mmSwitchRegister(){
return (function(byte){ return (function(byte){
// TODO: Check the bits to determin which bank and bank index is being switched on.
let mmcidx = (byte & 0xF0) >> 4;
if (mmcidx < this.__banks.length){
this.__banks[mmcidx].idx = (byte & 0x0F);
}
}).bind(this); }).bind(this);
} }
} }

正在加载...
取消
保存