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

    r5117699 r4cfe69a  
    933933| actab -- action code dispatch table
    934934| -----    --------------------------
    935 actab:          dc.l    act0    | 0 - AC_NULL:  no action
    936                 dc.l    act1    | 1 - AC_SUST:  sustain
    937                 dc.l    act2    | 2 - AC_ENBL:  enable
    938                 dc.l    act3    | 3 - AC_JUMP:  unconditional jump
    939                 dc.l    act4    | 4 - AC_LOOP:  jump n times      (loop)
    940                 dc.l    act5    | 5 - AC_KYUP:  jump if key up    (enable jump)
    941                 dc.l    act6    | 6 - AC_KYDN:  jump if key down  (sustain jump)
    942                 dc.l    act7    | 7 - AC_HERE:  here on key up
     935actab:          .dc.l   act0    | 0 - AC_NULL:  no action
     936                .dc.l   act1    | 1 - AC_SUST:  sustain
     937                .dc.l   act2    | 2 - AC_ENBL:  enable
     938                .dc.l   act3    | 3 - AC_JUMP:  unconditional jump
     939                .dc.l   act4    | 4 - AC_LOOP:  jump n times      (loop)
     940                .dc.l   act5    | 5 - AC_KYUP:  jump if key up    (enable jump)
     941                .dc.l   act6    | 6 - AC_KYDN:  jump if key down  (sustain jump)
     942                .dc.l   act7    | 7 - AC_HERE:  here on key up
    943943
    944944| fprescon -- FPU reset constant table
    945945| --------    ------------------------
    946 fprescon:       dc.w    0x0000  | frq 1           0.00
    947                 dc.w    0x8300  | level         -10.00
    948                 dc.w    0x0000  | frq 2           0.00
    949                 dc.w    0x0000  | locn            0.00
    950                 dc.w    0x0000  | frq 3           0.00
    951                 dc.w    0x0000  | reson           0.00
    952                 dc.w    0x0000  | frq 4           0.00
    953                 dc.w    0x7D00  | dyn           +10.00
    954                 dc.w    0x0000  | ind 1           0.00
    955                 dc.w    0x3E80  | filt           +5.00
    956                 dc.w    0x0000  | ind 2           0.00
    957                 dc.w    0x0000  | ind 3           0.00
    958                 dc.w    0x0000  | ind 4           0.00
    959                 dc.w    0x0000  | ind 5           0.00
    960                 dc.w    0x0000  | ind 6           0.00
     946fprescon:       .dc.w   0x0000  | frq 1           0.00
     947                .dc.w   0x8300  | level         -10.00
     948                .dc.w   0x0000  | frq 2           0.00
     949                .dc.w   0x0000  | locn            0.00
     950                .dc.w   0x0000  | frq 3           0.00
     951                .dc.w   0x0000  | reson           0.00
     952                .dc.w   0x0000  | frq 4           0.00
     953                .dc.w   0x7D00  | dyn           +10.00
     954                .dc.w   0x0000  | ind 1           0.00
     955                .dc.w   0x3E80  | filt           +5.00
     956                .dc.w   0x0000  | ind 2           0.00
     957                .dc.w   0x0000  | ind 3           0.00
     958                .dc.w   0x0000  | ind 4           0.00
     959                .dc.w   0x0000  | ind 5           0.00
     960                .dc.w   0x0000  | ind 6           0.00
    961961
    962962| ------------------------------------------------------------------------------
     
    964964| ------------------------------------------------------------------------------
    965965
    966 _fp_resv:       ds.w    12              | fpu spare function reset values
    967 _fpuifnc:       ds.w    1               | interrupting function number from FPU
     966_fp_resv:       .ds.w   12              | fpu spare function reset values
     967_fpuifnc:       .ds.w   1               | interrupting function number from FPU
    968968
    969969                .end
Note: See TracChangeset for help on using the changeset viewer.