Ejemplo n.º 1
0
 public DisplayController(IDeviceOutput output, int baseAddress)
 {
     _output             = output;
     _updateFormDelegate = new SetCharacterDelegate((textBoxIndex, character) => _form.SetCharacter(textBoxIndex, character));
     _baseAddress        = baseAddress * 0x10;
 }
Ejemplo n.º 2
0
 public DisplayController(IDeviceOutput output)
 {
     _output             = output;
     _updateFormDelegate = new SetCharacterDelegate((textBoxIndex, character) => _form.SetCharacter(textBoxIndex, character));
 }