Changeset c3437d9 in mainline for uspace/dist/src
- Timestamp:
- 2012-08-04T03:51:15Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ce0103
- Parents:
- e3f2765
- Location:
- uspace/dist/src/bithenge
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/dist/src/bithenge/test-repeat.bh
re3f2765 rc3437d9 7 7 8 8 transform without_count = struct { 9 . error <- repeat { uint8 <- zero_terminated };10 . end <- repeat { uint8 };9 .until_error <- repeat { uint8 <- zero_terminated }; 10 .until_end <- repeat { uint8 }; 11 11 }; 12 13 transform do_while = do { 14 struct { 15 .valid <- nonzero_boolean <- uint8; 16 .val <- uint8; 17 } 18 } while (.valid); 12 19 13 20 transform main = struct { 14 21 .with_count <- with_count; 15 .without_count <- without_count; 22 .without_count <- without_count <- known_length(9); 23 .do_while <- do_while; 16 24 };
Note:
See TracChangeset
for help on using the changeset viewer.