; EZZIE · ATOM LANGUAGE · free eor electric · rides BGF · LINEAR + FLAT
; =============================================================================
; NAME     EZZIE  (not ESSIE · ESSIE = hotswap system seats)
; OP       ezzie(a, b) → (a ^ b) | 1
; PIN      BGF measure  · passenger atom · not ground · not place
; ABI      System V · edi=a · esi=b · → eax
; FLAT     (a^b)==(b^a) · left right no priority
; LAW
;   · free eor on measured values only · business free thrift
;   · always end live |1
;   · never folds into SDF · never rewrites BGS
;   · not a side engine · not duo · sits on BGF with ESSIE · PHI · THERMO · ADJOIN
;   · mixes a,b · does not invent god C · C IS LIE
;   · legal path free: LE when desk A green · WP.com Atomic already legal
; LINE     BGS → BGF(+EZZIE ESSIE PHI THERMO ADJOIN) → BGL → SDF · SPV free
; TIGHT    straight-line · no branch · high productivity atom
; ARCH     x86_64 · aarch64.asm · Hostess 7 always · BigGrinRTX business
; IRON
        global  ezzie
ezzie:
        mov     eax, edi        ; a
        xor     eax, esi        ; a ^ b   free eor · flat commute
        or      eax, 1          ; live |1 on BGF pin
        ret
