os-workshop

same materials and sample source for RV32 OS projects
git clone http://frotz.net/git/os-workshop.git
Log | Files | Refs

ex25-kernel.app.mk (327B)


      1 
      2 MOD_NAME := ex25-kernel
      3 MOD_SRC := hw/src/start.mmu.S hw/src/trap-entry-dual-stack.S
      4 MOD_SRC += example/ex25-kernel.c
      5 MOD_SRC += hw/src/context-switch.S
      6 MOD_SRC += hw/src/debug-printf.c hw/src/debug-io.c hw/src/print-exception.c
      7 MOD_LIB := c
      8 MOD_EXT := out/ex25-user.bin
      9 MOD_LDSCRIPT := make/kernel.ram.ld
     10 include make/app.mk