AMBA spec (v2.0) only shows how the addresses wrap when hsize = 2 (word). Is it because the address boundary remains the same for each WRAP4, WRAP8, and WRAP16 cases? Or, should I re-calculate the wrap boundary based on hsize?For example, I know from the spec that hsize = 2 and WRAP4 will sequence through addresses like this:0x4 - 0x8 - 0xC - 0x0Then, does hsize = 1 (halfword) and WRAP4, mean the sequence should be0x4 - 0x6 - 0x8 - 0xA (using 4 word boundary) or 0x4 - 0x6 - 0x0 - 0x2 (using 4 halfword boundary)?Thanks!