#![allow(unused)]
use crate::r#type::common::*;
pub mod section_0 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
use serde::Serialize;
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Mode {
Lo, Hi, }
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Atype {
U32, S32, }
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Btype {
U32, S32, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct Dp2aModeAtypeBtype {
pub mode: Mode, pub atype: Atype, pub btype: Btype, pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
}
pub use section_0::Atype as Atype0;
pub use section_0::Btype as Btype0;
pub use section_0::Dp2aModeAtypeBtype;
pub use section_0::Mode as Mode0;