Re: [fasm-help] How to use floating point variables
Brought to you by:
privalov
|
From: Tomasz G. <fa...@me...> - 2002-08-21 13:13:19
|
> section '.data' data readable writeable > numberone dt ? > numbertwo dt ? > section '.code' code readable executable > mov [numberone],125.236 The size of tword data is 10 bytes, there is no mov instruction that can transef 10 bytes. But you can use floating point values of smaller sizes (dword, qword): numberone dd ? mov [numerone],125.236 -- Tomasz |