private void TPC()
        {
            var c = Register.AC.Accumulator & Masks.TELEPRINTER_BUFFER_MASK;

            Teleprinter.Type((byte)c);

            Teleprinter.InitiateOutput();
        }
Beispiel #2
0
 private void KIE()
 {
     Teleprinter.SetDeviceControls(Register.AC.Accumulator);
 }
Beispiel #3
0
        private void KRB()
        {
            Register.AC.SetAccumulator(Teleprinter.InputBuffer);

            Teleprinter.ClearInputFlag();
        }
Beispiel #4
0
 private void KCF()
 {
     Teleprinter.ClearInputFlag();
 }
Beispiel #5
0
        private void KCC()
        {
            Register.AC.ClearAccumulator();

            Teleprinter.ClearInputFlag();
        }
 private void TCF()
 {
     Teleprinter.ClearOutputFlag();
 }
 private void TFL()
 {
     Teleprinter.SetOutputFlag();
 }