示例#1
0
文件: ANSI.py 项目: metalsky/mvst
def DoScrollRegion(fsm):
    screen = fsm.something[0]
    r2 = int(fsm.something.pop())
    r1 = int(fsm.something.pop())
    screen.scroll_screen_rows(r1, r2)
示例#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)
示例#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)
示例#4
0
文件: ANSI.py 项目: 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)