The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: Jaflo187 on December 02, 2009, 10:46:05 PM

Title: FSM
Post by: Jaflo187 on December 02, 2009, 10:46:05 PM
Make an FSM to accept positive or neg numbers and a number with a decimal.
I.E. 12.544.-4,5,.003
Title: Re: FSM
Post by: rags on December 02, 2009, 11:22:10 PM
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.
Title: Re: FSM
Post by: hutch-- on December 03, 2009, 12:11:50 AM
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