; ANALYSIS · metal ASM · free-lane audit · companion to FORENSICS
; =============================================================================
; NAME     ANALYSIS  (detection / Hostess 17 line 9 · not fifth pin)
; OP       analysis(a,b,c) → (a^b^c)|1
; ABI      System V · edi=a · esi=b · edx=c · → eax
; LAW
;   · free XOR three marks · live |1 · never invent god C
;   · FORENSICS returns field (a-b)|1 + free in r8 · ANALYSIS returns free as main
;   · metal with ASM · never ML · cook residual SCAR off after
;   · throw out heard NO · KEEP GOD · kit NONOT-GOD-0001
; WITH     forensics/ · scar/ · baphomet/ · hostess7 mode 13
; LINE     BGS → BGF(+atoms) → BGL → SDF · SPV free
; TIGHT    straight-line · no branch
; IRON
        global  analysis
analysis:
        mov     eax, edi
        xor     eax, esi
        xor     eax, edx
        or      eax, 1          ; free lane · live
        ret
