22 static void Print(TCpuAccessor &cpua,
const TBus &mem,
const me_offset_t vadr,
23 const me_size_t size,
const u32 indent = 0U) {
24 const me_adr_t vadr_end = vadr + size;
25 const auto alignment = 16U;
27 const me_size_t no_filler_bytes = vadr % alignment;
28 const me_adr_t vadr_filler = vadr - no_filler_bytes;
32 if (no_filler_bytes > 0U) {
34 PrintSection(cpua, mem, vadr_filler, vadr_filler + no_filler_bytes, alignment, indent,
true);
37 PrintSection(cpua, mem, vadr, vadr_end, alignment, indent,
false);