;program to find the area of a rectangle
;author Andrew lu
;data:revised 11/2009
.386
.MODEL FLAT
ExitProcess PROTO NEAR32 stdcall,dwExitCode:DWORD
.STACK 4096
.DATA
long DWORD 35
wide DWORD 27
.CODE
_start:
move eax,long
mul wide
INVOKE ExitProcess,0
PUBLIC _start
END