Execute Assembly from Pascal

Posted by London on Stack Overflow See other posts from Stack Overflow or by London
Published on 2010-06-11T22:01:31Z Indexed on 2010/06/11 22:12 UTC
Read the original article Hit count: 347

Filed under:
|
|

How can I execute this code from Pascal :

               MOV EAX, variable1
               PUSH EBX, EAX
               MOV EAX, variable2
               POP EBX
               AND EBX, EAX

Where I define method/function arguments in function(variable1, variable2).

This is a school assignment I don't know why they are making us do Pascal/Assembly instead of Java/C++ or such.

This is not the whole assignment I did do plenty of work before I just need help with this, any help is appreciated thank you

© Stack Overflow or respective owner

Related posts about homework

Related posts about assembly