You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 13, 2023. It is now read-only.
I'm note sure it is possible to assign a value to a register symbols without using script. But if you need to dynamically assign a value maybe you can forge the script manually in your code.
Something like this :
var
myScript: string;
begin
myScript := "
alloc(testad,8)
registersymbol(testad)
mov testad, %d"
myScript := format(myScript,[1]);
end;
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
How can I assign value to registersymbol from library?
I tried as below but failed.
I don't want to do value assignment with script.
Script:
C# code:
The text was updated successfully, but these errors were encountered: