Sorry about that. One just assumes the acronymes one uses daily are the same ones to all the people. :) I mean Algorithmic State Machine. I need a software for some people who know a lot about the process, but not at all about programming. They should be able to create and test algorithms.
There was a rash of these "you'll never need to write a line of code again" graphical-type program generators around some years ago. I haven't heard of any recently. Have you tried searching, yourself? If you do, I suggest you spell it out, rather than using acronyms.
__________________
"Love justice, you who rule the world" - Dante Alighieri
I do not if this will help but you don't to ASM to C this program was written in C it may help or not
char format[] = "%s %s\n";
char hello[] = "Hello";
char world[] = "world";
void main(void)
{
_asm
{
mov eax, offset world
push eax
mov eax, offset hello
push eax
mov eax, offset format
push eax
call printf
/*clean up the stack so that main can exit cleanly*/
/*use the unused register ebx to the cleanup*/
pop ebx
pop ebx
pop ebx
}
}