; K10TEMP · AMD CPU die sensor class · thermo band input
; LINEAR BGS->BGF->SDF · atoms EZZIE PHI THERMO on BGF · free rides · no duo
; edi=C · cool≤70 0 · warm≤84 1 · hot 2 · |1
        mov     eax, edi
        cmp     eax, 70
        jle     .c
        cmp     eax, 84
        jle     .w
        mov     eax, 2
        jmp     .l
.c:     xor     eax, eax
        jmp     .l
.w:     mov     eax, 1
.l:     or      eax, 1
        ret
