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