gpt4 book ai didi

linux - VT-100 命令运行异常

转载 作者:太空狗 更新时间:2023-10-29 12:30:07 25 4
gpt4 key购买 nike

我正在使用 NASM 编写简单的时钟程序。我通过 iTerm 在 OSX 下使用 Ubuntu 14.10 Vagrant box。终端是 xterm,因此应该与 VT-100 兼容。

我需要删除一行。例如,我期望以下行为:

Hello, this is clock program
13:01:25 UTC+4

下一刻:

Hello, this is clock program
13:01:26 UTC+4

我写了以下函数。对于打印:

func_print:
mov eax, sys_write
mov ebx, stdout
int 0x80
ret

清除:

clr          db 0x1b,  "[K"
clr_len equ $-clr
...
func_clear:
mov ecx, clr
mov edx, clr_len
call func_print

为了保存和恢复位置,我使用 VT-100 及其命令:[7[8 分别为:

csave db     0x1b, "[7"
csave_len equ $-csave

crestore db 0x1b, "[8"
crestore_len equ $-crestore

我的代码:

global  _start
_start:
mov ecx, welcome
mov edx, welcome_len
call func_print

call func_print
call func_save_cursor_pos

mov dword [tv_sec], 2
mov dword [tv_usec], 0

call func_sleep
call func_clear

call func_restore_cursor_pos
mov ecx, welcome
mov edx, welcome_len
call func_print

jmp func_exit

然而,结果是:

vagrant@vagrant-ubuntu-trusty-64:~$ ./run.sh
Hello, this is the clock program
Hello, this is the clock program
Hello, this is the clock program
vagrant@vagrant-ubuntu-trusty-64:~$

如果我通过添加 [1A[1B 来更改 clr,它似乎会删除比需要高得多或更低的行:

vagrant@vagrant-ubuntu-trusty-64:~$ ./run.sh
Hello, this is the clock program
Hello, this is the clock program








Hello, this is the clock program
vagrant@vagrant-ubuntu-trusty-64:~$

我该如何解决?正确的代码是什么?

最佳答案

我怀疑您的问题与隐含在 welcome db "Hello, this is the clock program", 10 中的换行符有关。我不能确定,因为您没有发布那部分代码。

我认为这会导致问题,因为换行符会导致终端滚动 - 当我从我的版本中删除换行符时,它可以正常工作。如果您只需要更新一行,则无需换行即可。

我怀疑保存和恢复操作是在屏幕上的实际物理位置上工作的——而不是按换行符滚动的逻辑位置。

但是,一般来说,我建议改用游标操作转义码:

  • 当您准备好重绘输出时,编写 db 0x1b, "[nA" 向上移动 n 行。 (你需要把号码放在那里。)
  • 在那之后(或任何后续换行之后),立即写入 db 0x1b, "[K" 以清除该行。 (您已经知道这一点,但为了完整起见,我将其包括在内。)

我写了一个示例程序来实现这个,部分基于你的。它显示:

Hello, this is the clock program.
Line two.

然后,过了一会儿

=== TEST ===
More.

然后

=== TEST 2 ===
Again.

这种技术应该可以推广到任何合理数量的行。

BITS 32
section .text

welcome db "Hello, this is the clock program", 10, "Line two.", 10
welcome_len equ $-welcome

test_str db 0x1b, "[2A", 0x1b, "[K=== TEST ===", 10, 0x1b, "[KMore.", 10
test_len equ $-test_str

test2_str db 0x1b, "[2A", 0x1b, "[K=== TEST 2 ===", 10, 0x1b, "[KAgain.", 10
test2_len equ $-test2_str

func_print:
mov eax, 4
mov ebx, 1
int 0x80
ret

pause: ; Note: DON'T EVER USE THIS IN A REAL PROGRAM. This is not how you sleep properly.
mov eax, 0
loop:
inc eax
cmp eax, 1000000000
jl loop
ret

global _start
_start:
mov ecx, welcome
mov edx, welcome_len
call func_print

call pause

mov ecx, test_str
mov edx, test_len
call func_print

call pause

mov ecx, test2_str
mov edx, test2_len
call func_print

mov eax, 1
mov ebx, 0
int 0x80

关于linux - VT-100 命令运行异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30030088/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com