Is the address register an FP register?
No. The base rs1 is an integer register; only the data source/destination is an FP register.
Store a 32-bit single-precision floating-point value from an f register to memory.
FSW uses opcode 0100111 (0x27), funct3 010. The rs1 field holds the base address, rs2 holds the store data, and the 12-bit immediate split across imm[11:5] and imm[4:0] provides the offset.
FSW stores a single-precision floating-point value from floating-point register rs2 to memory using base+offset addressing mode. The effective address is the base address in rs1 plus a 12-bit signed byte offset. FSW is only guaranteed to execute atomically if the effective address is naturally aligned. Bits are not modified in the transfer.
FSW is a single-precision floating-point store. It forms the address from an integer base plus a signed 12-bit offset and writes the 32-bit single-precision bit pattern from f[rs2] to memory.
Understand this scenario with real code like «fsw f0, 0(x10)».
No. The base rs1 is an integer register; only the data source/destination is an FP register.
The offset is a signed 12-bit immediate, encoding -2048 to 2047 bytes.