zeek/auxil/spicy/doc/programming/examples/_parse-bitfield.spicy
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

15 lines
275 B
Plaintext

# Automatically generated; edit in Sphinx source code, not here.
module Test;
public type Foo = unit {
f: bitfield(32) {
x1: 0;
x2: 1..2;
x3: 3..4;
};
on %done {
print self.f.x1, self.f.x2, self.f.x3;
print self;
}
};