Why you need to use FP for that
You can use integers for that simple math...

Code:
Counter VAR LONG
Main:
IF button1=pressed THEN Counter = Counter + 11
IF button2=pressed THEN Counter = Counter + 1492
LCDOUT $FE,1, DEC Counter /1000, ".", DEC3 Counter //1000
GOTO Main