diff options
author | polwex <polwex@sortug.com> | 2025-10-07 02:24:42 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-10-07 02:24:42 +0700 |
commit | ca8a67a583ad39bdb4cf36d635536e099af21bdf (patch) | |
tree | a61661da51a9e03c970a6d280fd39ba4044badd7 /vere/pkg/noun/vortex.c | |
parent | 23a57eed38d560f0c2d84cc7803fafc74dbcc1dd (diff) |
solved NOCK issue, fucking bytecode man. but solid pill working!!
Diffstat (limited to 'vere/pkg/noun/vortex.c')
-rw-r--r-- | vere/pkg/noun/vortex.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vere/pkg/noun/vortex.c b/vere/pkg/noun/vortex.c index e4b55d9..f9c21d9 100644 --- a/vere/pkg/noun/vortex.c +++ b/vere/pkg/noun/vortex.c @@ -58,11 +58,17 @@ u3v_life(u3_noun eve) } } + // Check slot 3 before lifecycle + u3_noun eve_slot3 = u3r_at(3, eve); + u3l_log("u3v_life: eve slot 3 (before lifecycle) mug: 0x%x", u3r_mug(eve_slot3)); + u3l_log("u3v_life: calling u3n_nock_on(eve, [2 [0 3] [0 2]])..."); u3_noun gat = u3n_nock_on(eve, lyf); u3l_log("u3v_life: u3n_nock_on returned successfully"); + u3l_log("u3v_life: gate mug: 0x%x", u3r_mug(gat)); u3_noun cor = u3k(u3x_at(7, gat)); + u3l_log("u3v_life: slot 7 (kernel) mug: 0x%x", u3r_mug(cor)); u3z(gat); u3l_log("u3v_life: completed successfully"); |