Skip to content

Commit

Permalink
Added basic ByteInterval class
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Robbins authored and eschulte committed Feb 24, 2020
1 parent dda397b commit 634d7d0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions proto/ByteInterval.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ message ByteInterval {
repeated CodeBlock code_blocks = 2;
repeated DataBlock data_blocks = 3;
repeated SymbolicExpression symbolic_expressions = 4;
uint64 address = 5;
uint64 size = 6;
bytes contents = 7;
bool has_address = 5;
uint64 address = 6;
uint64 size = 7;
bytes contents = 8;
}

0 comments on commit 634d7d0

Please sign in to comment.