3 ***DISCLAIMER***: _These notes are from the defunct k8 project which_
4 _precedes SquirrelJME. The notes for SquirrelJME start on 2016/02/26!_
5 _The k8 project was effectively a Java SE 8 operating system and as such_
6 _all of the notes are in the context of that scope. That project is no_
7 _longer my goal as SquirrelJME is the spiritual successor to it._
11 A new month. Now let us see what was done this month. I do know that dynamic
12 recompilation into machine code has not been done. Near the end of this month
13 I completely rewrote hairball, now it is much cleaner and much leaner. It is
14 still incomplete however. At the start of the month I was finishing up the
15 rewrite of the Java NARF decoder and such. Then I started writing a Forth
16 interpreter for about two days, but decided to not write or use it for certain
17 things. Made a base debugger interface which required some implementation of
18 things and a few fixes. I added an incomplete common assembler intrerface for
19 assembling assembly. Then my hairball rewrite persisted for about a week. I
20 also changed some of my major mass commits to their own individual user
21 despite fossil export not using those changes. Then the kernel building system
22 was switched to configurations since those are easier to manage and to change.
26 The next thing to move onto is the compiler templates so the configuration may
27 select the compiler to use.
31 So now that I have a conifgurable setting to choose the target machine and the
32 compiler to use, I can get back to native code generation. I just need to
33 setup the steps to do that correctly.
37 I am going to require a dialect of C if I want interface with the main machine
38 without requiring pure assembly. The base bootstrapper would then require C,
39 but with my own compiler it can compile it to native code as needed. No C
40 library is required however and would not make much sense.
44 A generic C compiler interface would be best, one that could easilty be
45 changed to support differing aspects.