home *** CD-ROM | disk | FTP | other *** search
- ;
- ; *** Listing 12-2 ***
- ;
- ; Measures the performance of IMUL when used to calculate
- ; the 32-bit product of two 16-bit factors each with a value
- ; of zero.
- ;
- sub ax,ax ;we'll multiply zero times zero
- call ZTimerOn
- rept 1000
- imul ax
- endm
- call ZTimerOff