//-------------------------------------------------------------- // Purpose: Gets the current checksum value // Returns: int value of checksum //-------------------------------------------------------------- private int getChecksum() { int checksum = Computer.calculateChecksum(comp.progRAM.memory); return(checksum); }
private void outputTxtBox_KeyPress(object sender, KeyPressEventArgs e) { Computer.AddCharToBuffer(e.KeyChar); }