; Last update: 11/10/15 ; P.300 INCLUDE Irvine32.inc ; define a new type point STRUCT x SDWORD 0 y SDWORD 0 point ENDS newline MACRO ; define the macro call Crlf call Crlf call Crlf ENDM ; defne var. .data p1 point <1, 1> p2 point <2, 3> p3 point <7> p4 point <,8> p5 point <> .code main PROC mov EAX, p4.x mov EBX, p4.y newline call dumpregs newline exit main ENDP END main