Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我只想添加到变量中,但我不知道该怎么做。
static input: uns8; i:real32; noOfItems: uns8;
我想noOfItems=numberOfItems + i;
noOfItems=numberOfItems + i;
在进一步进行编码之前,您可能需要阅读HLA 文档。
要将变量加 1,可以使用以下INC命令:
INC
inc( noOfItems )
否则,请改用该ADD命令:
ADD
add( i, noOfItems )
我已经通过首先将值保存在寄存器中然后添加它来解决它
mov( unitPrice, edx); add(edx , totalunitPrice );