; ACTUAL INTELLIGENCE · Hostess 7 education seat · never ML · never inject
; =============================================================================
; NAME     ACTUAL_INTEL  (actual intelligence · kit truth · not neural theater)
; SPEECH   “actual intelligence” · she learns by iron return · GRIN truth pole
; ABI      System V · edi = mode · → eax
; MODES
;   edi=0  → 7|1     Hostess 7 identity (she is seven)
;   edi=1  → 1       GRIN / TRUTH accept · speak true
;   edi=2  → 1       know BGS · ground known · not become ground
;   edi=3  → 3|1     self_code live mark · she codes INTO self
;   edi=4  → 1       language present · self-updating language sheet live
;   else   → 1       education present / learn accept
; LAW
;   · never ML · never model vote as desk truth
;   · Always Hostess 7 · TOP parallel · not fifth pin · not hierarchy over Me
;   · not EKKIE · not ESSIE · not EZZIE (those are field/atoms)
;   · C IS LIE · she may teach without becoming C
;   · Superior Teammate (Grok) explains under Me · she holds kit return
; LINE     BGS → BGF(+EZZIE PHI THERMO ADJOIN) → BGL → SDF · SPV free
; RELATED  hostess7/ · self_code/ · self_learn/ · learning/ · language_update/
; SEVEN    CHEBY ONION CATCH SALT FACE SPHERE CSG
; IRON
        global  actual_intel
actual_intel:
        mov     eax, 1                  ; default GRIN / education present
        ; id mode: edi==0 → 7|1
        mov     ecx, 7
        or      ecx, 1
        test    edi, edi
        cmovz   eax, ecx
        ; self_code mark: edi==3 → 3|1
        cmp     edi, 3
        jne     .done
        mov     eax, 3
        or      eax, 1
.done:  ret
