예제 #1
0
파일: Watch.cs 프로젝트: robsonfr/BizHawk
 protected void PokeDWord(uint val)
 {
     if (_domain.Size == 0)
     {
         _domain.PokeDWord(_address, val, _bigEndian);                 // TODO: % size stil lisn't correct since it could be the last byte of the domain
     }
     else
     {
         _domain.PokeDWord(_address % _domain.Size, val, _bigEndian);              // TODO: % size stil lisn't correct since it could be the last byte of the domain
     }
 }