home *** CD-ROM | disk | FTP | other *** search
- ;
- ; *** Listing 8-2 ***
- ;
- ; Copies a byte via AL, with memory addressed with
- ; accumulator-specific direct addressing.
- ;
- jmp Skip
- ;
- SourceValue db 1
- DestValue db 0
- ;
- Skip:
- call ZTimerOn
- rept 1000
- mov al,[SourceValue]
- mov [DestValue],al
- endm
- call ZTimerOff