28 lines
767 B
NASM
28 lines
767 B
NASM
; ***************************************************************************
|
|
; copyright : (C) 2023 by Martin Preuss
|
|
; email : martin@libchipcard.de
|
|
;
|
|
; ***************************************************************************
|
|
; * This file is part of the project "AqHome". *
|
|
; * Please see toplevel file COPYING of that project for license details. *
|
|
; ***************************************************************************
|
|
|
|
|
|
|
|
|
|
; ---------------------------------------------------------------------------
|
|
; @routine Utils_WaitFor100MicroSecs @global
|
|
;
|
|
; wait for about 100 microsecs.
|
|
;
|
|
; @clobbers r22
|
|
|
|
Utils_WaitFor100MicroSecs:
|
|
rcall Utils_WaitFor50MicroSecs
|
|
rcall Utils_WaitFor50MicroSecs
|
|
ret
|
|
; @end
|
|
|
|
|
|
|