aboutsummaryrefslogtreecommitdiff
path: root/risugen
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2011-03-09 11:59:38 +0000
committerPeter Maydell <peter.maydell@linaro.org>2011-03-10 16:07:12 +0000
commit15908c1cb6affef22c3d037cfa900d3202b46d40 (patch)
treeffe143f1c4324f543254ffdca5e0a18a9fd4ede7 /risugen
parent9b2697a2dc664d94854112876fe57ad070b17115 (diff)
Allow "memory" block in config files
Allow config files to specify a "memory" block; this effectively enables the support for load/store insn tests which was implemented in the preceding commits.
Diffstat (limited to 'risugen')
-rwxr-xr-xrisugen2
1 files changed, 1 insertions, 1 deletions
diff --git a/risugen b/risugen
index 9b2c4c4..2b9ee68 100755
--- a/risugen
+++ b/risugen
@@ -39,7 +39,7 @@ my $bytecount;
# We store these in the insn_details hash.
# Valid block names (keys in blocks hash)
-my %valid_blockname = ( constraints => 1 );
+my %valid_blockname = ( constraints => 1, memory => 1 );
sub open_bin
{