Esempio n. 1
0
        // EVENT HANDLER: Writes a charatecter to terminal when CPU a byte in Memory from address 0x00100001
        // FUNCTION: - Dequees the charQueue field by 1
        //           - Writes the dequeued character to terminal
        //           - Write 0 if queue is empty
        public void WriteCharToTerminal(string strMessage)
        {
            string chr = (computer.getRegister0()).ToString();

            terminlaTextBox.AppendText(chr);
        }