1 entry with tag: easm

Hello 'Smaller' World
As development of easm continues, more and more ideas arise of ways to make easm easier to use. None of these could be as obvious as allowing strings to be declared on the fly.

Languages such as C and C++ make this as easy as being able to declare a string at the same time as declaring the argument to a function.

easm follows in these footsteps by also allowing strings to be declared within a function call - making the classic Hello World example even smaller.

Hello World:

section imports from msvcr71.dll import printf using cdecl from kernel32.dll import ExitProcess section code call printf ("Hello World!") call ExitProcess (00h)
Posted by Martin | 08/06/2008