#![allow(unused)]
use crate::r#type::common::*;
pub mod section_0 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
#[derive(Debug, Clone, PartialEq)]
pub enum Mode {
Hi, Lo, }
#[derive(Debug, Clone, PartialEq)]
pub enum Type {
U32, S32, }
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct Mad24ModeType {
pub mode: Mode, pub type_: Type, pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct Mad24HiSatS32 {
pub hi: (), pub sat: (), pub s32: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
}
pub use section_0::Mad24HiSatS32;
pub use section_0::Mad24ModeType;
pub use section_0::Mode as Mode0;
pub use section_0::Type as Type0;