FreeRTOS-Kernel/FreeRTOS/Demo/AVR_Dx_IAR/serial/interrupts.s90
m17336 d4bf09480a
Update previous AVR ATmega0 and AVR Dx projecs + addition of equivalent projects in MPLAB.X and IAR (#180)
* Updated indentation in AVR_ATMega4809_Atmel_Studio and AVR_Dx_Atmel_Studio projects, plus small fixes in their readme files.

* Added AVR_ATMega4809_IAR, AVR_ATMega4809_MPLAB.X, AVR_Dx_IAR and AVR_Dx_MPLAB.X demo projects.

* Removed build artefacts and added .gitignore files in AVR_ATMega4809_MPLAB.X and AVR_Dx_MPLAB.X projects.

Co-authored-by: Yuhui Zheng <10982575+yuhui-zheng@users.noreply.github.com>
2020-08-06 12:37:08 -07:00

13 lines
227 B
Text

#include <ioavr.h>
EXTERN USART1_RXC_handler
EXTERN USART1_DRE_handler
ASEG
ORG USART1_RXC_vect
jmp USART1_RXC_handler
ORG USART1_DRE_vect
jmp USART1_DRE_handler
RSEG CODE
END