.386
.model flat, stdcall
option casemap :none

include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
include \masm32\include\masm32.inc

includelib \masm32\lib\kernel32.lib
includelib \masm32\lib\masm32.lib


.data
    Less  db "x < y", 0
    More  db "x >= y", 0
    x     sword  4
    y     sword  6

.code
start:


    mov     ax, x
    mov     dx, y
    cmp     ax, dx
    jl      isLess
    invoke  StdOut, addr Less
    jmp     Done
    
isLess:
    invoke  StdOut, addr More

Done:
    
    invoke ExitProcess, 0

end start