aboutsummaryrefslogtreecommitdiff
path: root/src/common/test_assembler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/test_assembler.h')
-rw-r--r--src/common/test_assembler.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/common/test_assembler.h b/src/common/test_assembler.h
index 560f7aef..19782b92 100644
--- a/src/common/test_assembler.h
+++ b/src/common/test_assembler.h
@@ -324,6 +324,15 @@ class Section {
return *this;
}
+ // Append at most SIZE bytes from DATA; if DATA is less than SIZE bytes
+ // long, pad with '\0' characters.
+ Section &AppendCString(const string &data, size_t size) {
+ contents_.append(data, 0, size);
+ if (data.size() < size)
+ Append(size - data.size(), 0);
+ return *this;
+ }
+
// Append VALUE or LABEL to this section, with the given bit width and
// endianness. Return a reference to this section.
//