; ; ; Page.a ; ; include for creating MMU tables for NOS ; ; ; FILL will fill n*4 bytes with a word MACRO FILL $n,$word LCLA i i SETA 0 WHILE i<$n DCD $word i SETA i + 1 WEND MEND ; LoadPage will create a MMU Table entry that loads page n*0x1000 into memory MACRO LoadPage $n DCD $n:SHL:12 + 0xAAE MEND ; DontLoadPages will create num entries in a MMU Table that does not load a page MACRO DontLoadPages $num FILL $num,0xFFFFFAAE MEND END