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
function allocate_memory() -> word {
let res : word;
assembly {
function allocate_unbounded() -> memPtr {
memPtr := mload(64)
}
res := allocate_unbounded()
}
return res;
}