Exemplo n.º 1
0
        static BasicCommands()
        {
            vdu = new VduSystem();
            os = new OS(vdu);
            printManager = new PrintManager(os, vdu);

            ticksAtTime = Environment.TickCount;
            time = ticksAtTime / 10;
        }
Exemplo n.º 2
0
        private int width = 0; // A width of 0 means that width is ignored

        #endregion Fields

        #region Constructors

        public PrintManager(OS os, VduSystem vdu)
        {
            this.os = os;
            this.vdu = vdu;
            FormatNumber = 0x90A;
        }