Currently the note only says > This instruction is equivalent to [CALL](https://www.evm.codes/#F1), except that it does not allow any state modifying instructions or sending ETH in the sub [context](https://www.evm.codes/about). The disallowed instructions are [CREATE](https://www.evm.codes/#F0), [CREATE2](https://www.evm.codes/#F5), [LOG0](https://www.evm.codes/#A0), [LOG1](https://www.evm.codes/#A1), [LOG2](https://www.evm.codes/#A2), [LOG3](https://www.evm.codes/#A3), [LOG4](https://www.evm.codes/#A4), [SSTORE](https://www.evm.codes/#55), [SELFDESTRUCT](https://www.evm.codes/#FF), [EOFCREATE](https://www.evm.codes/#EC), as well as [CALL](https://www.evm.codes/#F1) or [EXTCALL](https://www.evm.codes/#F8) if the [value](https://www.evm.codes/#34) sent is not 0. but TSTORE is [also disallowed](https://eips.ethereum.org/EIPS/eip-1153#:~:text=If%20the%20TSTORE%20opcode%20is%20called%20within%20the%20context%20of%20a%20STATICCALL%2C%20it%20will%20result%20in%20an%20exception%20instead%20of%20performing%20the%20modification.%20TLOAD%20is%20allowed%20within%20the%20context%20of%20a%20STATICCALL) inside a STATICCALL.