News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Child Window Makes Parent Inactive - Third try

Started by raleeper, August 19, 2011, 04:35:35 PM

Previous topic - Next topic

dedndave

it's a little macro for moving memory to memory
        m2m     SomeData1,SomeData2
it uses push and pop so that no registers are used
        push    SomeData2
        pop     SomeData1

raleeper

Quote from: dedndave on August 21, 2011, 06:18:11 AM
it's a little macro for moving memory to memory
        m2m     SomeData1,SomeData2
it uses push and pop so that no registers are used
        push    SomeData2
        pop     SomeData1


Well, that's obvious, now that you tell me.  Thanks.