home *** CD-ROM | disk | FTP | other *** search
- ;
- ; *** Listing 9-19 ***
- ;
- ; Times the performance of SUB with a register as the
- ; destination operand and memory as the source operand.
- ;
- jmp Skip
- ;
- Dest db 0
- ;
- Skip:
- call ZTimerOn
- rept 1000
- sub al,[Dest] ;subtract [Dest] from AL
- ; Only 1 memory access
- ; is performed
- endm
- call ZTimerOff