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


Ignore:
Timestamp:
07/16/2017 03:10:36 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
62340ef
Parents:
5117699
Message:

Use .ds and .dc pseudo-ops. Generate debug symbols.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • rom/lowram.s

    r5117699 r4cfe69a  
    129129| This MUST live in the 'text' segment for things to work.
    130130
    131 p_lowtpa:       dc.l    0                       | low address of TPA
    132 p_hitpa:        dc.l    0                       | high address + 1 of TPA
    133 p_tbase:        dc.l    0                       | low address of text segment
    134 p_tlen:         dc.l    0                       | length of text segment
    135 p_dbase:        dc.l    0                       | low address of data segment
    136 p_dlen:         dc.l    0                       | length of data segment
    137 p_bbase:        dc.l    0                       | low address of BSS segment
    138 p_blen:         dc.l    0                       | length of BSS segment
    139 p_dta:          dc.l    0                       | pointer to DTA
    140 p_parent:       dc.l    0                       | pointet to parent basepage
    141                 dc.l    0
    142 p_env:          dc.l    0                       | pointer to environment string
    143                 ds.l    20
    144 p_cmdlin:       dc.b    0                       | command line tail image
    145                 ds.b    127
     131p_lowtpa:       .dc.l   0                       | low address of TPA
     132p_hitpa:        .dc.l   0                       | high address + 1 of TPA
     133p_tbase:        .dc.l   0                       | low address of text segment
     134p_tlen:         .dc.l   0                       | length of text segment
     135p_dbase:        .dc.l   0                       | low address of data segment
     136p_dlen:         .dc.l   0                       | length of data segment
     137p_bbase:        .dc.l   0                       | low address of BSS segment
     138p_blen:         .dc.l   0                       | length of BSS segment
     139p_dta:          .dc.l   0                       | pointer to DTA
     140p_parent:       .dc.l   0                       | pointet to parent basepage
     141                .dc.l   0
     142p_env:          .dc.l   0                       | pointer to environment string
     143                .ds.l   20
     144p_cmdlin:       .dc.b   0                       | command line tail image
     145                .ds.b   127
    146146
    147147current:
     
    165165                .even
    166166
    167 basebss:        ds.l    1                               | start of BSS
     167basebss:        .ds.l   1                               | start of BSS
    168168
    169169                .end
Note: See TracChangeset for help on using the changeset viewer.