I am currently familiarizing myself with the possibilities of Turbo Assembler 2.0; I was happy to find out that float constants can be specified as follows.
SomeVariable dd 72.0; corresponds to 042900000h
I was assuming that it is possible to evaluate expressions at assembly-time, like
SomeVariable dd 1.0 / 4.0; does not assemble
however this seems to be impossible. Is there indeed no possiblity to generate constants even from relatively simple expressions at assemble-time?