summaryrefslogtreecommitdiff
path: root/lib/rts.c
diff options
context:
space:
mode:
authorAlasdair Armstrong2019-04-24 20:51:34 +0100
committerAlasdair Armstrong2019-04-24 20:51:34 +0100
commitc6eb6b79daafb7dc44eb4e8a17409a1a04098ec6 (patch)
treedc43770c447a365a034b3d7d3a392f7aa4b992a0 /lib/rts.c
parentef237aea8d1667f1cbe13047acf1c916c94335e5 (diff)
SMT: Make sure we clear overflow checks between generating properties
Diffstat (limited to 'lib/rts.c')
-rw-r--r--lib/rts.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/rts.c b/lib/rts.c
index eacf0a70..fea3588d 100644
--- a/lib/rts.c
+++ b/lib/rts.c
@@ -94,9 +94,10 @@ void write_mem(uint64_t address, uint64_t byte)
uint64_t mask = address & ~MASK;
uint64_t offset = address & MASK;
- //if ((byte >= 97 && byte <= 122) || (byte >= 64 && byte <= 90) || (byte >= 48 && byte <= 57) || byte == 10 || byte == 32) {
- // fprintf(stderr, "%c", (char) byte);
- //}
+ /* if ((byte >= 97 && byte <= 122) || (byte >= 64 && byte <= 90) || (byte >= 48 && byte <= 57) || byte == 10 || byte == 32) {
+ fprintf(stderr, "%" PRIx64 "\n", address);
+ fprintf(stderr, "%c", (char) byte);
+ } */
struct block *current = sail_memory;