Comments
Loading Dream Comments...
You must be logged in to write a comment - Log In
Based on the old Z80 Nascom assembler I wrote in 1980 (yes, aren't I old, lol) ::SHE+ILA:: will soon have an assembler of its own, supporting 486 and Pentium opcodes such as LSS and POPCOUNT, as well as the standard X86 instruction set. The syntax will be similar to the Nascom 2 stuff I wrote, for example :
{= // Denotes an .ASM block;
EAX <: EBX // MOV AX, BX;
EAX += EDX // ADD EAX, EDX;
ESI <: [$0417] // MOV SI, WORD PTR [0417H];
=} // Close assembly block;
This will help with the coding and maintenance of ::SHE::, the protected-mode kernel and virtual memory manager. Note that LEESHA is still in the planning stage, and won't come into existence as such for a while, as other things are in the queue :)