home *** CD-ROM | disk | FTP | other *** search
- ;
- ; *** Listing 12-3 ***
- ;
- ; Measures the performance of JMP when the prefetch queue
- ; is full when it comes time for each JMP to run.
- ;
- sub ax,ax ;we'll multiply zero times zero
- call ZTimerOn
- rept 1000
- imul ax ;let the prefetch queue fill
- jmp short $+2 ;we'll do a short jump,
- ; since the next instruction
- ; is less than 127 bytes
- ; away
- endm
- call ZTimerOff