ptx_parser/type/instruction/
prmt.rs1#![allow(unused)]
7use crate::r#type::common::*;
8
9pub mod section_0 {
10 use crate::Spanned;
11 use crate::parser::Span;
12 use crate::r#type::common::*;
13
14 use serde::Serialize;
15
16 #[derive(Debug, Clone, PartialEq, Serialize)]
17 pub enum Mode {
18 Rc16, F4e, B4e, Rc8, Ecl, Ecr, }
25
26 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
27 pub struct PrmtB32Mode {
28 pub b32: (), pub mode: Option<Mode>, pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
35 }
36}
37
38pub use section_0::Mode as Mode0;
41pub use section_0::PrmtB32Mode;