home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Programming Black Book (Special Edition)
/
BlackBook.bin
/
disk1
/
zoa
/
zen_list.exe
/
LST8-3.ASM
< prev
next >
Wrap
Assembly Source File
|
1990-02-15
|
246b
|
17 lines
;
; *** Listing 8-3 ***
;
; Tests the zero/non-zero status of a variable via
; the direct-addressing mod-reg-rm form of CMP.
;
jmp Skip
;
TestValue dw ?
;
Skip:
call ZTimerOn
rept 1000
cmp [TestValue],0
endm
call ZTimerOff