avr: started adding some often needed snippets to reduce code size.

This commit is contained in:
Martin Preuss
2023-04-20 23:59:10 +02:00
parent 73404d79f6
commit 11c674d673

28
avr/shared.asm Normal file
View File

@@ -0,0 +1,28 @@
; ***************************************************************************
; 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