0

嗨,我只想添加到变量中,但我不知道该怎么做。

static
input: uns8;
i:real32;
noOfItems: uns8;

我想noOfItems=numberOfItems + i;

4

2 回答 2

1

在进一步进行编码之前,您可能需要阅读HLA 文档。

要将变量加 1,可以使用以下INC命令:

inc( noOfItems )

否则,请改用该ADD命令:

add( i, noOfItems )
于 2012-05-04T23:32:55.073 回答
0

我已经通过首先将值保存在寄存器中然后添加它来解决它

mov( unitPrice, edx);
add(edx , totalunitPrice );
于 2012-05-05T08:39:42.770 回答