Ejemplo n.º 1
0
	def loop(msg):
		pyvga.cleartext()
		pyvga.entertext()
		while msg.count('\n'):
			n = msg.index('\n')
			print msg[:n]
			msg = msg[n+1:]
		while 1: 
			stack.swap(None, idl_task)
Ejemplo n.º 2
0
def splashup():
	pyvga.exittext()
	pyvga.framebuffer[:0xFA00] = pyvga.splashscreen[:0xFA00]
	pyvga.cleartext()
Ejemplo n.º 3
0
 def loop(msg):
     pyvga.cleartext()
     pyvga.entertext()
     print msg
     while 1:
         pass
Ejemplo n.º 4
0
	def loop(msg):
		pyvga.cleartext()
		pyvga.entertext()
		print msg
		while 1: pass
Ejemplo n.º 5
0
def splashup():
    pyvga.exittext()
    pyvga.framebuffer[:0xFA00] = pyvga.splashscreen[:0xFA00]
    pyvga.cleartext()