Skip to content

Commit 7fb6434

Browse files
author
lolololol
committed
emu.setup
1 parent e610950 commit 7fb6434

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

experiments/teacup/emu_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
DATA_ADDR = 0x92d4
2222

2323
for i in range(0,50):
24-
# print("Emulating run %d..." % i)
2524
emu = rainbow_arm(trace_config=TraceConfig(register=HammingWeight()))
2625
emu.load(sys.argv[1])
26+
emu.setup()
2727
rand_input = np.array([random.randint(0,0xFF) for i in range(0,8)],dtype=np.uint8)
2828
emu[DATA_ADDR] = bytes(rand_input[0:4])
2929
emu[DATA_ADDR + 4] = bytes(rand_input[4:8])

0 commit comments

Comments
 (0)