MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / or

Function or

crates/virtual-machine/src/cpu/alu.rs:80–82  ·  view source on GitHub ↗
(a: u64, b: u64)

Source from the content-addressed store, hash-verified

78}
79#[inline]
80pub fn or(a: u64, b: u64) -> u64 {
81 a | b
82}
83#[inline]
84pub fn xor(a: u64, b: u64) -> u64 {
85 a ^ b

Callers 2

exec_alu_immFunction · 0.85
exec_aluFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected