mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
332 B
Plaintext
18 lines
332 B
Plaintext
{
|
|
let x := calldataload(0)
|
|
let a := and(0xff, shr(248, shl(248, shr(248, x))))
|
|
let b := shr(12, shl(8, and(x, 0xf0f0)))
|
|
sstore(a, b)
|
|
}
|
|
// ====
|
|
// EVMVersion: >byzantium
|
|
// ----
|
|
// step: fullSuite
|
|
//
|
|
// {
|
|
// {
|
|
// let x := calldataload(0)
|
|
// sstore(shr(248, x), and(shr(4, x), 3855))
|
|
// }
|
|
// }
|