gpt4 book ai didi

assembly - 我试着用汇编写

转载 作者:行者123 更新时间:2023-12-04 02:46:19 26 4
gpt4 key购买 nike

<分区>

我尝试通过单元格值政变地址 100h 到 110h 写入负值 。 (如果该值为负 - 它仍然为负)。不要使用比较 CMP。所以我尝试用文本命令检查 MSB 符号,但它不起作用我写了这个

code segment
assume ds:code,cs:code
start: mov ax,code
mov cx,10
mov si,100h
check:
mov al,[si]
test al,10000000h//here i have problem!
je isntnegative
inc si
dec cx
cmp cx,0
jz finish
jmp check
isntnegative:
neg al
inc si
dec cx
cmp cx,0
jz finish
jmp check
finish:
int 21h
nop
code ends
end start

我知道它很长而且很有效,但这是我目前能做的最好的。

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