├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── deploy ├── arithmetic-keypair.json ├── control_flow-keypair.json ├── registers-keypair.json └── syscalls-keypair.json └── src ├── arithmetic └── arithmetic.s ├── control_flow └── control_flow.s ├── lib.rs ├── registers └── registers.s └── syscalls └── syscalls.s /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/README.md -------------------------------------------------------------------------------- /deploy/arithmetic-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/deploy/arithmetic-keypair.json -------------------------------------------------------------------------------- /deploy/control_flow-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/deploy/control_flow-keypair.json -------------------------------------------------------------------------------- /deploy/registers-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/deploy/registers-keypair.json -------------------------------------------------------------------------------- /deploy/syscalls-keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/deploy/syscalls-keypair.json -------------------------------------------------------------------------------- /src/arithmetic/arithmetic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/src/arithmetic/arithmetic.s -------------------------------------------------------------------------------- /src/control_flow/control_flow.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/src/control_flow/control_flow.s -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/registers/registers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/src/registers/registers.s -------------------------------------------------------------------------------- /src/syscalls/syscalls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelofeitoza/sbpf-cheatsheet/HEAD/src/syscalls/syscalls.s --------------------------------------------------------------------------------