fixed warp_sched lock bug

This commit is contained in:
Blaise Tine
2020-05-28 08:52:20 -04:00
parent 98b98b1005
commit 611ceb000a
21 changed files with 85757 additions and 3601 deletions

View File

@@ -23,7 +23,7 @@ VX_MAIN = vx_simple_main
VX_SRCS = vx_simple_main.c tests.c
all: HEX DUMP ELF
all: HEX DUMP ELF BIN
DUMP: ELF
$(DMP) -D $(VX_MAIN).elf > $(VX_MAIN).dump
@@ -31,5 +31,8 @@ DUMP: ELF
HEX: ELF
$(CPY) -O ihex $(VX_MAIN).elf $(VX_MAIN).hex
BIN: ELF
$(CPY) -O binary $(VX_MAIN).elf $(VX_MAIN).bin
ELF:
$(COMP) $(CC_FLAGS) $(VX_STR) $(VX_FIO) $(NEWLIB) $(VX_INT) $(VX_IO) $(VX_API) $(VX_SRCS) $(LIBS) -Iinclude -o $(VX_MAIN).elf