Exemplo n.º 1
0
def DoScrollRegion(fsm):
    screen = fsm.something[0]
    r2 = int(fsm.something.pop())
    r1 = int(fsm.something.pop())
    screen.scroll_screen_rows(r1, r2)
Exemplo n.º 2
0
def DoScrollRegion(fsm):

    screen = fsm.memory[0]
    r2 = int(fsm.memory.pop())
    r1 = int(fsm.memory.pop())
    screen.scroll_screen_rows(r1, r2)
Exemplo n.º 3
0
def DoScrollRegion (fsm):

    screen = fsm.memory[0]
    r2 = int(fsm.memory.pop())
    r1 = int(fsm.memory.pop())
    screen.scroll_screen_rows (r1,r2)
Exemplo n.º 4
0
Arquivo: ANSI.py Projeto: BruceYi/okl4
def DoScrollRegion (fsm):
        screen = fsm.something[0]
        r2 = int(fsm.something.pop())
        r1 = int(fsm.something.pop())
        screen.scroll_screen_rows (r1,r2)