示例#1
0
文件: Watch.cs 项目: robsonfr/BizHawk
 protected void PokeWord(ushort val)
 {
     if (_domain.Size == 0)
     {
         _domain.PokeWord(_address, val, _bigEndian);                 // TODO: % size stil lisn't correct since it could be the last byte of the domain
     }
     else
     {
         _domain.PokeWord(_address % _domain.Size, val, _bigEndian);              // TODO: % size stil lisn't correct since it could be the last byte of the domain
     }
 }