31 lines
641 B
NASM
31 lines
641 B
NASM
; ***************************************************************************
|
|
; copyright : (C) 2025 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. *
|
|
; ***************************************************************************
|
|
|
|
|
|
|
|
.macro bigcall
|
|
.if FLASHEND >= 0x1000
|
|
call @0
|
|
.else
|
|
rcall @0
|
|
.endif
|
|
.endmacro
|
|
|
|
|
|
.macro bigjmp
|
|
.if FLASHEND >= 0x1000
|
|
jmp @0
|
|
.else
|
|
rjmp @0
|
|
.endif
|
|
.endmacro
|
|
|
|
|
|
|