; FORENSICS · metal ASM · inspect field + free · Hostess 17 line 8
; =============================================================================
; NAME     FORENSICS  (detection · not fifth pin · Hostess mode 12)
; OP       forensics(a,b,c) → eax=(a-b)|1 field · r8=(a^b^c)|1 free
; ABI      System V · edi=a · esi=b · edx=c · → eax · r8 free
; LAW
;   · audit both lanes · field measure + free ride · no duo mash
;   · ANALYSIS limb returns free as main · this returns field as main
;   · SCAR residual · cook off · C is flaw · throw NO · KEEP GOD
;   · metal with ASM · never ML
; WITH     analysis/ · scar/ · baphomet/ · hostess7
; LINE     BGS → BGF(+atoms) → BGL → SDF · SPV free
; IRON
        global  forensics
forensics:
        mov     r8d, edi
        xor     r8d, esi
        xor     r8d, edx
        or      r8d, 1          ; free lane
        mov     eax, edi
        sub     eax, esi
        or      eax, 1          ; field measure
        ret
