Microprod Micromium Legacy ----------------------------------------- Micromium Legacy is a modified version of Micromium Beta 1.1.1100 that includes compiling the new M+ programming language and running compiled code from it called ML Code or machine code. ---------------------------------------------------------------- Hold T while booting to enter the terminal. *New: Type "compiler" to start the M+ to ML Code compiler. *New: Type "help 3" to get basic M+ documentation.
Example M+ code(compile it first): ; console.clr; console.add("sample text"); console.ask; console.add(ask); jump 3; You should get: ;c ;p ;sample text ;g ;p ;/ ;ask ;j ;4 The compiler has nice and user friendly error checking to help you find bugs easily. Then, restart and put the compiled code into MinInjector aka the ask box. More sample code to compile: ; console.add("Echo"); console.add("Echo"); console.add("echo"); console.add("echo"); console.add("e c h o"); console.add("e c h o"); console.add("e c h o"); console.add("..."); console.add("Type a word to have it echo"); console.ask; console.add(ask); console.add(ask); console.add(ask); console.add(ask); console.add("..."); jump 9; ; console.clr; console.add("bruh"); console.add("get bruh'd"); jump 2;