我正在用NASM编写简单的时钟程序。我通过iTerm在OSX下使用Ubuntu 14.10 Vagrant框。终端是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:~$
如果我通过添加clr
或[1A
来更改[1B
,那么它似乎正在删除高于所需数量或更低的行:
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:~$
我该如何解决?什么是正确的代码?
答案 0 :(得分:1)
我怀疑您的问题与隐含在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