diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-12-18 13:55:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-18 13:55:44 -0500 |
commit | b2a42e1facc5f9684f51f3dc909c6dcd53a245ff (patch) | |
tree | 5c2f4c1cf30f11316bbe1409ebe94292d4453c95 /tests | |
parent | dd71ac5cc9fba8072679e5dada6b5ade41e3d835 (diff) | |
parent | 3671ecc7d0b3792c61ceee858435b3b75ad4739c (diff) | |
download | yosys-b2a42e1facc5f9684f51f3dc909c6dcd53a245ff.tar.gz yosys-b2a42e1facc5f9684f51f3dc909c6dcd53a245ff.tar.bz2 yosys-b2a42e1facc5f9684f51f3dc909c6dcd53a245ff.zip |
Merge pull request #1572 from nakengelhardt/scratchpad_pass
add a command to read/modify scratchpad contents
Diffstat (limited to 'tests')
-rw-r--r-- | tests/various/scratchpad.ys | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/various/scratchpad.ys b/tests/various/scratchpad.ys new file mode 100644 index 000000000..dc94081ea --- /dev/null +++ b/tests/various/scratchpad.ys @@ -0,0 +1,5 @@ +scratchpad -set foo "bar baz" +scratchpad -copy foo oof +scratchpad -unset foo +scratchpad -assert oof "bar baz" +scratchpad -assert-unset foo |