From 8b233f99fe3ed172eedfe09695042190230db8d3 Mon Sep 17 00:00:00 2001 From: elicn Date: Wed, 8 Jun 2022 16:59:54 +0300 Subject: [PATCH] Adjust ctl_remove_cache usage to signature --- bindings/python/sample_ctl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/sample_ctl.py b/bindings/python/sample_ctl.py index ece02b3f..5dc7d86c 100644 --- a/bindings/python/sample_ctl.py +++ b/bindings/python/sample_ctl.py @@ -55,7 +55,7 @@ def test_uc_ctl_tb_cache(): # Now we clear cache for all TBs. for i in range(8): - uc.ctl_remove_cache(addr + i * 512) + uc.ctl_remove_cache(addr + i * 512, addr + 0x1000) evicted = time_emulation(uc, addr, addr + len(code))