FPU.READFLOAT();  // Get floating point value of register A

example 1:   

#include<LCD4_128.h>
#include<FPU_128.h>

void main()
{
  
   float num;
   float c;
   Init_Fpu();    // Initialize FPU
   Lcd_init();     // Initialize LCD
  
   num = 2.3232;
   FPU.FWRITEA(1,num);
  
   c = FPU.READFLOAT();
  
   LCD.PRINT_HEX(c);
 
}

//result : will print 0X4014AF4F