Struct FifoOut
struct FifoOut<T> {
full: bool,
empty: bool,
data: Rv<T>,
}Expand
NOTE: If this crosses a domain boundary, full is only visible in on the write side, and empty on the read side
struct FifoOut<T> {
full: bool,
empty: bool,
data: Rv<T>,
}NOTE: If this crosses a domain boundary, full is only visible in on the write side, and empty on the read side