Hello,
I would like to know if there is any way to make this code work?
It compile well on MASM v10 but I have the following error with POASM:
C:\Test\test.asm(15): error: Symbol 'Test2' is undefined.
C:\Test\test.asm(15): error: Symbol 'Test1.Test2' is undefined.
.386
.model flat, stdcall ;32 bit memory model
option casemap :none ;case sensitive
.data
.code
Test1 proc
push ebp
mov ebp, esp
mov eax, 0
jmp Test2
leave
retn
Test1 endp
Test2 proc
push ebp
mov ebp, esp
mov eax, 1
leave
retn
Test2 endp
end
Thanks in advance and have a nice day.