2021-12-12 23:53:04 +08:00
|
|
|
APP := hellow
|
2022-08-08 05:04:42 +08:00
|
|
|
SRCS = ../common/init.S $(APP).c $(EXTRA_SRCS_$(APP))
|
2023-03-20 08:00:51 +08:00
|
|
|
CCFLAGS := -march=rv32imac_zicsr_zba_zbb_zbs_zcb -Os
|
2021-12-12 23:53:04 +08:00
|
|
|
MAX_CYCLES := 1000000
|
2021-12-13 02:28:23 +08:00
|
|
|
INCDIR := include ../common
|
2021-12-12 23:53:04 +08:00
|
|
|
|
2022-08-10 06:38:14 +08:00
|
|
|
EXTRA_SRCS_irq_force := ../common/irq_dispatch.S
|
2022-08-10 07:09:13 +08:00
|
|
|
EXTRA_SRCS_irq_top_bottom := ../common/irq_dispatch.S
|
2022-08-08 05:04:42 +08:00
|
|
|
EXTRA_SRCS_irq_preempt_set_in_irq := ../common/irq_dispatch.S
|
2022-08-08 06:17:03 +08:00
|
|
|
EXTRA_SRCS_irq_set_all_with_pri := ../common/irq_dispatch.S
|
2021-12-05 07:44:22 +08:00
|
|
|
|
|
|
|
include ../common/src_only_app.mk
|