os-workshop

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

ex10-threads-cooperative.app.mk (308B)


      1 
      2 MOD_NAME := ex10-threads-cooperative
      3 MOD_SRC := hw/src/start.S hw/src/trap-entry-single-stack.S
      4 MOD_SRC += example/ex10-threads-cooperative.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