The system has been designed to be extremely compact.
The system has been ported to the protected mode of the Intel x86 compatible group of processors and tested on PCs running the AMD-K6-2 processor and the Intel Pentium processor. The total size of this build with all OS and VM features listed in the description and specification can be broken down as follows:
Operating system internals (boot-up, initialization, kernel, heap, other): 45 KB
CLDC VM internals: 80 KB
CLDC VM class files (non-compressed): 99 KB
Total size: 224 KB
Removing unwanted features can further reduce the size of such a build.
Requirements for a Port
MJVMK is written in highly portable ANSI C. All processor-specific source code listed below is grouped to make porting as straightforward as possible. No external libraries are required.
The interface to the java CLDC virtual machine is written in Java and can be compiled with any standard Java compiler.
A port of the system requires:
• A C compiler that generates reentrant code - code that can be executed by more than one task/thread without fear of corruption
• Interrupts can be explicitly enabled and disabled
• The processor has a clock tick interrupt that occurs at regular intervals
• The processor supports a hardware stack that can accommodate numerous stack frames
• The processor has instructions that allow for loading and storing the stack pointer and other thread-specific CPU registers
The following limited amount of code must be written to complete a port to a specific processor:
• Any platform specific initialization
• Configuring the tick interrupt and the tick rate
• A register swap function for thread switches
• The java standard output and standard error streams (optional but recommended)
For the x86 protected mode port, the above consisted of:
• An x86 boot-loader
• About 300 lines of code for CPU initialization which included enabling address line 20, starting the protected mode, initializing the heap and stack, and initializing the interrupt table
• About 100 additional lines of code for the streams, clock tick and context switching, comprising approximately 4 percent of the compiled operating system