5 So it seems the `LOAD_POOL` on the array type is not correct?
9 I think it would be easiest if the initial allocator used the actual memory
10 blocks and such rather than taking a huge chunk of things. It would enable
11 things to actually be freed.
15 I was thinking... having the bootstrap in CLDC is a bit complicated if I could
16 say. So I was wondering... what if I could make a kind of mini-bootstrap VM
17 kind of project which has its own object an dusch. Just a few basic classes
18 that have a specific set of rules for them. Something that completely is
19 standalone and definitely does not represent the entire VM and such. So this
20 could include stuff such as debugging information and otherwise. But it could
21 be enough to initialize the VM with the absolute minimum requirement for
22 starting it. I could also have debugging stuff in the bootstrap and basic
23 system call handling as in doing no-ops except for printing to the console.
27 Okay so now that I have a supervisor in its own little package with like the
28 very minimalist of classes, I just need to solve having the assembly in
29 multiple places so that it is not duplicated. So co-dependencies for the
30 CLDC and supervisor to share the same assembly stuff.