Changeset 3370595 in buchla-68k for rom/lowram.s


Ignore:
Timestamp:
08/07/2017 03:19:26 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
16badfe
Parents:
27c8d40
Message:

Fix symbol collisions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • rom/lowram.s

    r27c8d40 r3370595  
    7979| The equate for HI_RAM must be set to match the memory configuration used.
    8080
    81 |       For a  512K system, _Hi_RAM = 0x080000
    82 |       For a 1024K system, _Hi_RAM = 0x100000
     81|       For a  512K system, Hi_RAM = 0x080000
     82|       For a 1024K system, Hi_RAM = 0x100000
    8383
    84 _Hi_RAM         =       0x100000                | highest RAM address + 1
     84Hi_RAM          =       0x100000                | highest RAM address + 1
    8585
    8686                .page
     
    9191LOWRAM:         lea     basebss,a0              | setup bss base
    9292                move.l  a0,p_bbase              | ...
    93                 lea     _Hi_RAM-0x400,a1        | setup faked bss length
     93                lea     Hi_RAM-0x400,a1         | setup faked bss length
    9494                suba.l  a0,a1                   | ...
    9595                move.l  a1,p_blen               | ...
     
    107107                move.l  a1,p_tlen               | ...
    108108
    109                 lea     _Hi_RAM,a7              | setup stack pointer
     109                lea     Hi_RAM,a7               | setup stack pointer
    110110
    111111                lea     p_lowtpa,a0             | setup TPA base
Note: See TracChangeset for help on using the changeset viewer.