summaryrefslogtreecommitdiff
path: root/vere/pkg/noun/vortex.c
diff options
context:
space:
mode:
Diffstat (limited to 'vere/pkg/noun/vortex.c')
-rw-r--r--vere/pkg/noun/vortex.c6
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");