Beispiel #1
0
def DoDown(fsm):
    count = int(fsm.something.pop())
    screen = fsm.something[0]
    screen.cursor_down(count)
Beispiel #2
0
def DoDown (fsm):

    count = int(fsm.memory.pop())
    screen = fsm.memory[0]
    screen.cursor_down (count)
Beispiel #3
0
def DoDownOne(fsm):
    screen = fsm.something[0]
    screen.cursor_down()
Beispiel #4
0
def DoDownOne (fsm):

    screen = fsm.memory[0]
    screen.cursor_down ()
Beispiel #5
0
def DoDown(fsm):

    count = int(fsm.memory.pop())
    screen = fsm.memory[0]
    screen.cursor_down(count)
Beispiel #6
0
def DoDownOne(fsm):

    screen = fsm.memory[0]
    screen.cursor_down()
Beispiel #7
0
def DoDown (fsm):
        count = int(fsm.something.pop())
        screen = fsm.something[0]
        screen.cursor_down (count)
Beispiel #8
0
def DoDownOne (fsm):
        screen = fsm.something[0]
        screen.cursor_down ()