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

    r5117699 r4cfe69a  
    731731| actab -- action code dispatch table
    732732| -----    --------------------------
    733 actab:          dc.l    act0    | 0 - AC_NULL:  no action
    734                 dc.l    act1    | 1 - AC_SUST:  sustain
    735                 dc.l    act2    | 2 - AC_ENBL:  enable
    736                 dc.l    act3    | 3 - AC_JUMP:  unconditional jump
    737                 dc.l    act4    | 4 - AC_LOOP:  jump n times      (loop)
    738                 dc.l    act5    | 5 - AC_KYUP:  jump if key up    (enable jump)
    739                 dc.l    act6    | 6 - AC_KYDN:  jump if key down  (sustain jump)
    740                 dc.l    act7    | 7 - AC_HERE:  here on key up
     733actab:          .dc.l   act0    | 0 - AC_NULL:  no action
     734                .dc.l   act1    | 1 - AC_SUST:  sustain
     735                .dc.l   act2    | 2 - AC_ENBL:  enable
     736                .dc.l   act3    | 3 - AC_JUMP:  unconditional jump
     737                .dc.l   act4    | 4 - AC_LOOP:  jump n times      (loop)
     738                .dc.l   act5    | 5 - AC_KYUP:  jump if key up    (enable jump)
     739                .dc.l   act6    | 6 - AC_KYDN:  jump if key down  (sustain jump)
     740                .dc.l   act7    | 7 - AC_HERE:  here on key up
    741741
    742742| ------------------------------------------------------------------------------
     
    746746| ----------------- local variables --------------------------------------------
    747747
    748 _curpf_f:       ds.w    1       | interrupting voice & parameter from FPU
     748_curpf_f:       .ds.w   1       | interrupting voice & parameter from FPU
    749749
    750750| ----------------- debug variables --------------------------------------------
    751751
    752 _curpf_t:       ds.w    1       | current trigger
    753 
    754 _curpf_l:       ds.l    1       | current pflist entry
     752_curpf_t:       .ds.w   1       | current trigger
     753
     754_curpf_l:       .ds.l   1       | current pflist entry
    755755
    756756| ------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.