os-workshop

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

ex11-threads-preemptive.app.mk (306B)


      1 
      2 MOD_NAME := ex11-threads-preemptive
      3 MOD_SRC := hw/src/start.S hw/src/trap-entry-single-stack.S
      4 MOD_SRC += example/ex11-threads-preemptive.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 gfx
      8 MOD_QEMU_FB := 1
      9 include make/app.mk