summaryrefslogtreecommitdiff
path: root/test/integrations/anonymous_parsed/input.fdl
blob: 316c6314ee3ed9cf27549213ef0058f9ea472f08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package fiddle.test {
  type test_type : struct {
    reg test_reg(32) : struct {
      test_bits : enum (1) {
        on = 0b1,
        off = 0b0,
      };
      reserved(31);
    };
  };
};