I am trying to store a 32 bit immediate value in a riscv memory location.The corresponding code is
lui x13,0x12345
addi x13,x13,0x678 // 32 bit value- 12345678
lui x11, 0x1c010 // address location 1c01000
sw x13,x11
The problem I am facing is during simulation 32 bit value is not found in the address location(1c01000). Address location shows only 1 byte of the given data(78)