Changeset 4cfe69a in buchla-68k for ram/procpfl.s
- Timestamp:
- 07/16/2017 03:10:36 PM (7 years ago)
- Branches:
- master
- Children:
- 62340ef
- Parents:
- 5117699
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ram/procpfl.s
r5117699 r4cfe69a 731 731 | actab -- action code dispatch table 732 732 | ----- -------------------------- 733 actab: dc.l act0 | 0 - AC_NULL: no action734 dc.l act1 | 1 - AC_SUST: sustain735 dc.l act2 | 2 - AC_ENBL: enable736 dc.l act3 | 3 - AC_JUMP: unconditional jump737 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 up733 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 741 741 742 742 | ------------------------------------------------------------------------------ … … 746 746 | ----------------- local variables -------------------------------------------- 747 747 748 _curpf_f: ds.w 1 | interrupting voice & parameter from FPU748 _curpf_f: .ds.w 1 | interrupting voice & parameter from FPU 749 749 750 750 | ----------------- debug variables -------------------------------------------- 751 751 752 _curpf_t: ds.w 1 | current trigger753 754 _curpf_l: ds.l 1 | current pflist entry752 _curpf_t: .ds.w 1 | current trigger 753 754 _curpf_l: .ds.l 1 | current pflist entry 755 755 756 756 | ------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.