Hello,
If your MCU has 128 Kb of RAM, you will have two blocks of RAM, SRAM_L and SRAM_U (See chapter 3.5.3.2 of RM). Each of them will be 64 KB of RAM = FFFF in Hex
SRAM_L ends at 1FFF_FFFF and SRAM_U begins at 2000_0000. So your RAM memory map will be:
SRAM_L: From 1FFF_0000 to 1FFF_FFFF (64 Kb)
SRAM_U: From 2000_0000 to 2000_FFFF (64 Kb)
Regards,
Santiago