Esempio 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)
Esempio n. 2
0
def splashup():
	pyvga.exittext()
	pyvga.framebuffer[:0xFA00] = pyvga.splashscreen[:0xFA00]
	pyvga.cleartext()
Esempio n. 3
0
 def loop(msg):
     pyvga.cleartext()
     pyvga.entertext()
     print msg
     while 1:
         pass
Esempio n. 4
0
	def loop(msg):
		pyvga.cleartext()
		pyvga.entertext()
		print msg
		while 1: pass
Esempio n. 5
0
def splashup():
    pyvga.exittext()
    pyvga.framebuffer[:0xFA00] = pyvga.splashscreen[:0xFA00]
    pyvga.cleartext()