#![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 Shape {
M8n8, }
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Type {
B16, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct MovmatrixSyncAlignedShapeTransType {
pub sync: (), pub aligned: (), pub shape: Shape, pub trans: (), pub type_: Type, pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
}
pub use section_0::MovmatrixSyncAlignedShapeTransType;
pub use section_0::Shape as Shape0;
pub use section_0::Type as Type0;