29 lines
630 B
NASM
29 lines
630 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. *
|
|
; ***************************************************************************
|
|
|
|
|
|
|
|
; ***************************************************************************
|
|
; code
|
|
|
|
.cseg
|
|
|
|
|
|
Shared_Clc_Ret:
|
|
clc
|
|
ret
|
|
|
|
|
|
Shared_Sec_Ret:
|
|
sec
|
|
ret
|
|
|
|
|
|
|