Changeset 4cfe69a in buchla-68k for ram/sedisp.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
  • ram/sedisp.s

    r5117699 r4cfe69a  
    11871187| sddtab -- score display dispatch table -- MUST match score.h definitions
    11881188| ------    ----------------------------    ------------------------------
    1189 sddtab:         dc.l    dsexit          | 0     null
    1190                 dc.l    dsexit          | 1     score begin
    1191                 dc.l    dssbgn          | 2     section begin
    1192                 dc.l    dssend          | 3     section end
    1193                 dc.l    dsinst          | 4     instrument change
    1194                 dc.l    dsnbx           | 5     note begin
    1195                 dc.l    dsnex           | 6     note end
    1196                 dc.l    dsstop          | 7     stop
    1197                 dc.l    dsintp          | 8     interpolate
    1198                 dc.l    dstmpo          | 9     tempo
    1199                 dc.l    dstune          | 10    tuning
    1200                 dc.l    dsgrp           | 11    group status
    1201                 dc.l    dslocn          | 12    location
    1202                 dc.l    dsdyn           | 13    dynamics
    1203                 dc.l    dsanvl          | 14    analog value
    1204                 dc.l    dsanrs          | 15    analog resolution
    1205                 dc.l    dsasgn          | 16    I/O assign
    1206                 dc.l    dstrns          | 17    transposition
    1207                 dc.l    dsexit          | 18    repeat
    1208                 dc.l    dspnch          | 19    punch in/out
    1209                 dc.l    dsexit          | 20    polyphonic pressure
    1210                 dc.l    dsexit          | 21    score end
    1211                 dc.l    dsexit          | 22    channel pressure
    1212                 dc.l    dsbar           | 23    bar marker
    1213                 dc.l    dsnext          | 24    next score
     1189sddtab:         .dc.l   dsexit          | 0     null
     1190                .dc.l   dsexit          | 1     score begin
     1191                .dc.l   dssbgn          | 2     section begin
     1192                .dc.l   dssend          | 3     section end
     1193                .dc.l   dsinst          | 4     instrument change
     1194                .dc.l   dsnbx           | 5     note begin
     1195                .dc.l   dsnex           | 6     note end
     1196                .dc.l   dsstop          | 7     stop
     1197                .dc.l   dsintp          | 8     interpolate
     1198                .dc.l   dstmpo          | 9     tempo
     1199                .dc.l   dstune          | 10    tuning
     1200                .dc.l   dsgrp           | 11    group status
     1201                .dc.l   dslocn          | 12    location
     1202                .dc.l   dsdyn           | 13    dynamics
     1203                .dc.l   dsanvl          | 14    analog value
     1204                .dc.l   dsanrs          | 15    analog resolution
     1205                .dc.l   dsasgn          | 16    I/O assign
     1206                .dc.l   dstrns          | 17    transposition
     1207                .dc.l   dsexit          | 18    repeat
     1208                .dc.l   dspnch          | 19    punch in/out
     1209                .dc.l   dsexit          | 20    polyphonic pressure
     1210                .dc.l   dsexit          | 21    score end
     1211                .dc.l   dsexit          | 22    channel pressure
     1212                .dc.l   dsbar           | 23    bar marker
     1213                .dc.l   dsnext          | 24    next score
    12141214
    12151215| ==============================================================================
     
    12191219| globals:
    12201220| --------
    1221 _ac_code:       ds.b    1               | accidental code
     1221_ac_code:       .ds.b   1               | accidental code
    12221222
    12231223| locals:
    12241224| -------
    1225 numstr:         ds.b    65              | video display update work area
     1225numstr:         .ds.b   65              | video display update work area
    12261226
    12271227| ------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.