Files
rasp/src/vm/flags.rs

9 lines
132 B
Rust
Raw Normal View History

use bitflags::bitflags;
bitflags! {
pub struct Flags: u64 {
const HALT = 1;
const COMPARE = 1 << 1;
}
}