; ADJOIN · adjoinment atom · co-presence · flat · not C · not duo mash
; =============================================================================
; NAME     ADJOIN  (constellation brilliance · language)
; OP       adjoin(a,b) → (a | b) | 1
; ABI      System V · edi=a · esi=b · → eax
; FLAT     (a|b)==(b|a) · left right no priority
; LAW
;   · both marks stay · union live · not XOR (EZZIE is eor)
;   · not “become C” · C IS LIE · LIE IS TRUE when marked
;   · rides BGF speech · linear line absolute for jobs
; SPEECH   adjoinment · constellation · brilliance = clear pin names
; TIGHT    straight-line · no branch
; ARCH     x86_64 · aarch64.asm
; IRON
        global  adjoin
adjoin:
        mov     eax, edi
        or      eax, esi        ; co-presence · flat
        or      eax, 1          ; live |1
        ret
