Rev 539 | Blame | Compare with Previous | Last modification | View Log | Download
# file opened: memory_limits.asm1 0000 ; common case, reset, second one2 0000 ORG 0xFFFFmemory_limits.asm(3): warning: RAM limit exceeded 0x10000 by ORG3 FFFF ED B0 ldir ; warning about memory limit4 0001 ED B0 ldir ; no warning (not doubling)5 0003 ORG 0 ; reset warnings state6 0000 ORG 0xFFFFmemory_limits.asm(7): warning: RAM limit exceeded 0x10000 by ORG7 FFFF ED B0 ldir ; (again) warning about memory limit8 0001 ED B0 ldir ; no warning (not doubling)9 000310 0003 ; DISP-only11 0003 ORG 0x100012 1000 DISP 0xFFFFmemory_limits.asm(13): warning: RAM limit exceeded 0x10000 by DISP13 FFFF ED B0 ldir ; warning about DISP memory limit14 0001 ED B0 ldir15 0003 ORG 0 ; displacedorg-ok ; does reset the DISP part only, not real address16 0000 ORG 0xFFFF ; displacedorg-okmemory_limits.asm(17): warning: RAM limit exceeded 0x10000 by DISP17 FFFF ED B0 ldir ; (again) warning about DISP memory limit18 0001 ED B0 ldir ; no warning (not doubling)19 0003 ENDT20 100821 1008 ; physical under DISP22 1008 ORG 0xFFFF23 FFFF DISP 0x2000memory_limits.asm(24): warning: RAM limit exceeded 0x10000 by ORG24 2000 ED B0 ldir ; warning about memory limit25 2002 ED B0 ldir26 2004 ORG 0x3000 ; displacedorg-ok ; does NOT reset physical one, only DISP one27 3000 ED B0 ldir28 3002 ED B0 ldir29 3004 ENDT30 000731 0007 ; physical AND disp together32 0007 ORG 0xFFFF33 FFFF DISP 0xFFFFmemory_limits.asm(34): warning: RAM limit exceeded 0x10000 by DISPmemory_limits.asm(34): warning: RAM limit exceeded 0x10000 by ORG34 FFFF ED B0 ldir ; will get TWO warnings (DISP + ORG)35 0001 ED B0 ldir36 0003 ENDT37 000338 0003 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39 0003 ;; Block-emit code coverage40 0003 ORG 0xFFF0memory_limits.asm(41): warning: RAM limit exceeded 0x10000 by ORG41 FFF0 AA AA AA... block 100,0xAA ; warning about memory limit42 0054 ORG 043 0000 ORG 0xFFF0memory_limits.asm(44): warning: RAM limit exceeded 0x10000 by ORG44 FFF0 BB BB BB... block 100,0xBB ; again45 005446 0054 ; DISP-only47 0054 ORG 0x100048 1000 DISP 0xFFF0memory_limits.asm(49): warning: RAM limit exceeded 0x10000 by DISP49 FFF0 CC CC CC... block 100,0xCC ; warning about DISP memory limit50 0054 ORG 0 ; displacedorg-ok ; does reset the DISP part only, not real address51 0000 ORG 0xFFF0 ; displacedorg-okmemory_limits.asm(52): warning: RAM limit exceeded 0x10000 by DISP52 FFF0 DD DD DD... block 100,0xDD ; again53 0054 ENDT54 10C855 10C8 ; physical under DISP56 10C8 ORG 0xFFF057 FFF0 DISP 0x2000memory_limits.asm(58): warning: RAM limit exceeded 0x10000 by ORG58 2000 EE EE EE... block 100,0xEE ; warning about memory limit59 2064 ORG 0x3000 ; displacedorg-ok ; does NOT reset physical one, only DISP one60 3000 FF FF FF... block 100,0xFF61 3064 ENDT62 00B863 00B8 ; physical AND disp together64 00B8 ORG 0xFFF065 FFF0 DISP 0xFFF0memory_limits.asm(66): warning: RAM limit exceeded 0x10000 by DISPmemory_limits.asm(66): warning: RAM limit exceeded 0x10000 by ORG66 FFF0 77 77 77... block 100,0x77 ; will get TWO warnings (DISP + ORG)67 0054 ENDT68 0054# file closed: memory_limits.asmValue Label------ - -----------------------------------------------------------