コード例 #1
0
ファイル: SystemMemory.cs プロジェクト: jpeace/SharpOs
 public Word GetWordAt(Word location)
 {
     var ret = new Word();
     for (var i = 0 ; i < Word.Width ; ++i)
     {
         ret.SetByte(i, this[location + i]);
     }
     return ret;
 }