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

    r5117699 r4cfe69a  
    486486| sextab -- score execution dispatch table -- MUST match score.h definitions
    487487| ------    ----------------------------------------------------------------
    488 sextab:         dc.l    exexit          | 0     null
    489                 dc.l    exexit          | 1     score begin
    490                 dc.l    exsbgn          | 2     section begin
    491                 dc.l    exexit          | 3     section end
    492                 dc.l    exinst          | 4     instrument change
    493                 dc.l    exnbeg          | 5     note begin
    494                 dc.l    exnend          | 6     note end
    495                 dc.l    exstop          | 7     stop
    496                 dc.l    exintp          | 8     interpolate
    497                 dc.l    extmpo          | 9     tempo
    498                 dc.l    extune          | 10    tuning
    499                 dc.l    exexit          | 11    group status
    500                 dc.l    exlocn          | 12    location
    501                 dc.l    exdyn           | 13    dynamics
    502                 dc.l    exanvl          | 14    analog value
    503                 dc.l    exanrs          | 15    analog resolution
    504                 dc.l    exasgn          | 16    I/O assign
    505                 dc.l    extrns          | 17    transposition
    506                 dc.l    exexit          | 18    repeat
    507                 dc.l    expnch          | 19    punch in/out
    508                 dc.l    exexit          | 20    -unused- (polyphonic pressure)
    509                 dc.l    exexit          | 21    score end
    510                 dc.l    exexit          | 22    -unused- (channel pressure)
    511                 dc.l    exexit          | 23    bar marker
    512                 dc.l    exnext          | 24    next score
     488sextab:         .dc.l   exexit          | 0     null
     489                .dc.l   exexit          | 1     score begin
     490                .dc.l   exsbgn          | 2     section begin
     491                .dc.l   exexit          | 3     section end
     492                .dc.l   exinst          | 4     instrument change
     493                .dc.l   exnbeg          | 5     note begin
     494                .dc.l   exnend          | 6     note end
     495                .dc.l   exstop          | 7     stop
     496                .dc.l   exintp          | 8     interpolate
     497                .dc.l   extmpo          | 9     tempo
     498                .dc.l   extune          | 10    tuning
     499                .dc.l   exexit          | 11    group status
     500                .dc.l   exlocn          | 12    location
     501                .dc.l   exdyn           | 13    dynamics
     502                .dc.l   exanvl          | 14    analog value
     503                .dc.l   exanrs          | 15    analog resolution
     504                .dc.l   exasgn          | 16    I/O assign
     505                .dc.l   extrns          | 17    transposition
     506                .dc.l   exexit          | 18    repeat
     507                .dc.l   expnch          | 19    punch in/out
     508                .dc.l   exexit          | 20    -unused- (polyphonic pressure)
     509                .dc.l   exexit          | 21    score end
     510                .dc.l   exexit          | 22    -unused- (channel pressure)
     511                .dc.l   exexit          | 23    bar marker
     512                .dc.l   exnext          | 24    next score
    513513
    514514                .bss
     
    518518| globals:
    519519| --------
    520 _xevent:        ds.l    1               | next event pointer
     520_xevent:        .ds.l   1               | next event pointer
    521521
    522522                .end
Note: See TracChangeset for help on using the changeset viewer.