; CREATE_TRUTH · creation under GRIN · free thrift · never C
; =============================================================================
; NAME     CREATE_TRUTH
; OP       create_truth(a,b) → (a^b)|1   free create mix on measure (EZZIE kin)
; ABI      edi=a · esi=b · → eax
; LAW
;   · create by free eor of held A,B · live |1
;   · inventing C is flaw · creation is pair truth
; RELATED  ezzie/ · grin/ · super_intel/
; IRON
        global  create_truth
create_truth:
        mov     eax, edi
        xor     eax, esi
        or      eax, 1
        ret
