27.08.2016, 19:12
btw, can u give me link to all opcodes?(not found as well)
About getting address of function: I think funcidx returns id only for public(and count only publics)/
And why we are using LOAD.S.alt(it stores content, not address)? But CONST.pri loads addreess?!?!!?!?
edit 1:
semantic for sub:
WRONG:
right:
semantic for sdiv:
WRONG:
right:
About getting address of function: I think funcidx returns id only for public(and count only publics)/
And why we are using LOAD.S.alt(it stores content, not address)? But CONST.pri loads addreess?!?!!?!?
edit 1:
semantic for sub:
WRONG:
PHP Code:
PRI = ALT - PRI
PHP Code:
PRI = PRI -ALT
WRONG:
PHP Code:
shown in example
PHP Code:
PRI = PRI/ALT (quotient)
ALT = PRI%ALT (the second register consists remainder)