0
嗨,我只是想添加到變量,我無法弄清楚如何做到這一點。在高級程序集中添加語句HLA
static
input: uns8;
i:real32;
noOfItems: uns8;
我想noOfItems=numberOfItems + i;
嗨,我只是想添加到變量,我無法弄清楚如何做到這一點。在高級程序集中添加語句HLA
static
input: uns8;
i:real32;
noOfItems: uns8;
我想noOfItems=numberOfItems + i;
我已經先保存在價值解決它註冊然後添加它像
mov(unitPrice, edx);
add(edx , totalunitPrice);
嗨,感謝您的回覆,但這是不是我正在尋找 我已經解決了它通過首先保存在寄存器中的值,然後添加它像 mov(i,edx); add(edx,numberOfItems); –