Procházet zdrojové kódy

mmSwitchRegister() finished.

master
Bryan Miller před 5 roky
rodič
revize
9a50ab2514
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. +4
    -1
      src/mmc.js

+ 4
- 1
src/mmc.js Zobrazit soubor

@@ -92,7 +92,10 @@ class MMC{
mmSwitchRegister(){
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);
}
}

Načítá se…
Zrušit
Uložit