Commit 43f8ec1c authored by Ava Howell's avatar Ava Howell Committed by norswap

fix missing `ret` in MIPS.sol

parent e742d9c3
......@@ -59,7 +59,7 @@ contract MIPS {
emit TryReadMemory(addr);
ret = m.ReadMemory(stateHash, addr);
//emit DidReadMemory(addr, ret);
return;
return ret;
}
assembly {
ret := sload(addr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment