From 1cbbafd61cc912015925e69016b357e4f0a800cc Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Sat, 28 Oct 2023 00:08:20 +0200 Subject: lt_bus: update example to invalidate full u64 addr range to see limiting by mapped range --- src/lt_bus.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lt_bus.cc') diff --git a/src/lt_bus.cc b/src/lt_bus.cc index 069e01f..443feb2 100644 --- a/src/lt_bus.cc +++ b/src/lt_bus.cc @@ -19,8 +19,8 @@ struct target : public sc_core::sc_module { tx.is_write(), tx.is_read()); tx.set_response_status(tlm::TLM_OK_RESPONSE); - CLOGM(YELLOW, "invalidate 0x00 - 0x10"); - p_sock->invalidate_direct_mem_ptr(0, 0x10); + CLOGM(YELLOW, "invalidate 0x00 - 0xff..ff"); + p_sock->invalidate_direct_mem_ptr(0, -1ull); } }; -- cgit v1.2.3