1 2 3 4 5 6 7 8 9 10 11
use super::prelude::*; pub(crate) fn get_definitions(inp: &mut Definitions) { inp.add( Ident::ArchPrctl, vec!["code", "addr"], // FIXME addr direction depends on the "code" vec![AV::MemoryAddress(In), AV::MemoryAddress(InOut)], AV::Int(Out), ); }