Make an FSM to accept positive or neg numbers and a number with a decimal.
I.E. 12.544.-4,5,.003
Show us some code of what you have done so far, then we can help you.
And as JJ2207 said in this post http://www.masm32.com/board/index.php?topic=12828.0;topicseen
we don't do homework assignments.
Jaflo187,
Here is a hint, if what your definition od a FSM entails getting a set result from a specified input to a finite limit, you can do it simply by using a MASM .IF block.
.if eax == 1
mov eax, 1234
ret
.elseif eax == 2
mov eax, 2345
ret
.elseif eax == 3
mov eax, 3456
ret
.else
mov eax, -1
ret
.endif