Comments
Loading Dream Comments...
You must be logged in to write a comment - Log In
ArtistIn the middle of the picture is a beautiful purple plushie wearing a purple velvet ballgown. Around her are several integrated-circuit chips.
After that short negotiation break, we continue with the ASM code for the ::SHE+ILA:: Kernel, in this case some more of the virtual storage code :
{_ // Begin ASM block
CKPT: _PROC
_CALL GARBCOLL
_CALL WRITEDISK; // Write the page frame EBX.pgfrmseg back to the swapfile at EBX.lba
_RET
GETPF: _PROC
// Put us at the front of the LRU list
_MOV ESI,EBX.priorLRU;
_MOV EDI,EBX.nextLRU;
_MOV EBX.priorLRU,0;
_MOV EBX.nextLRU,GS:[LRUhead];
_MOV GS:[LRUhead],EBX;
_MOV ESI.nextLRU,EDI;
_CMP EDI,0
_JNZ L2
_MOV GS:[swapLBA],ESI.lba;
L2: _MOV EDI.priorLRU,ESI;
_RET
_} // End ASM block
// *** To be continued *** :)