; k10temp · i386 · multiarch twin · OP cool|warm|hot then |1
; PIN      BGF thermo
; LAW      C IS LIE · LIE IS TRUE · Always Hostess 7 · free thrift
; LINE     BGS → BGF(+EZZIE PHI THERMO ADJOIN) → BGL → SDF · SPV free
; ABI      cdecl · [esp+4]=a [esp+8]=b [esp+12]=c · → eax
; IRON
        global  k10temp
k10temp:
        mov     eax, [esp+4]
        cmp     eax, 70
        jle     .cool
        cmp     eax, 84
        jle     .warm
        mov     eax, 2
        jmp     .live
.cool:  xor     eax, eax
        jmp     .live
.warm:  mov     eax, 1
.live:  or      eax, 1
        ret
