예제 #1
0
파일: RAM.cs 프로젝트: mrgrey/Snow
 private void _cellChanged(DataCell changedCell)
 {
     if (_needCellChangeInvoke)
         if (CellChangedHandler != null)
             CellChangedHandler(changedCell);
 }
예제 #2
0
파일: Program.cs 프로젝트: mrgrey/Snow
 public static void RAMCellChanged(DataCell cell)
 {
     Console.WriteLine("Cell 0x{0:X4} changed: 0x{1:X4}", (int)cell.Id, cell.Data);
 }