24 lines
473 B
Rust
24 lines
473 B
Rust
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
// See Notices.txt for copyright information
|
|
use fayalite::{int::UInt, ty::Value};
|
|
|
|
#[derive(Value, Clone, Hash, PartialEq, Eq, Debug)]
|
|
#[hdl(outline_generated)]
|
|
pub struct S<T> {
|
|
pub a: T,
|
|
b: UInt<3>,
|
|
}
|
|
|
|
#[derive(Value, Clone, Hash, PartialEq, Eq, Debug)]
|
|
#[hdl(outline_generated)]
|
|
pub enum E<T> {
|
|
A,
|
|
B {},
|
|
C(),
|
|
D(UInt<3>),
|
|
E { a: UInt<3> },
|
|
F(UInt<3>, UInt<3>),
|
|
G(T),
|
|
H(T, UInt<1>),
|
|
}
|