我想做一个函数,它会在屏幕上打印一个名为 sol 的数组。每个字符之间的距离应位于彼此相距 3 个“字符”的位置。
但是,当我运行我的代码时,只打印数组的第一行。
这是我的 Dseg 代码:
line db 0
col db 0
temp db 3
indexc dw 0
sol db 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'
S_LEN = $- sol
db 'p', 'p', 'p', 'p', 'p', 'p', 'p', 'p'
db '*', '*', '*', '*', '*', '*', '*', '*'
db '*', '*', '*', '*', '*', '*', '*', '*'
db '*', '*', '*', '*', '*', '*', '*', '*'
db '*', '*', '*', '*', '*', '*', '*', '*'
db 'p', 'p', 'p', 'p', 'p', 'p', 'p', 'p'
db 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'
S_LEN2 = $- sol
我的功能是:
PutPlayers Proc
push ax bx cx dx si
InitiolazingVar:
mov temp, offset sol
mov line, 1
mov col, 1
mov si, 1
Again:
;location
mov dl, col
mov dh, line
mov bx, 0
mov ah, 2h
int 10h
;printing the char
mov al, ds:[temp][si]
mov bl, 33
mov cx, 1h
mov bh, 0
mov ah, 9h
int 10h
add col, 3h
inc si
cmp si, 9
jnz Again
add temp, S_LEN
mov si, 1h
mov col, 1h
add line, 3h
cmp line, 19h
jnz Again
pop si dx cx bx ax
ret
PutPlayers endp
那么,你能帮帮我吗?