Skip to content

Commit e4e57ad

Browse files
authored
Merge pull request #8 from ErickOF/unification
Integrating Unification module into dev
2 parents 331b9a6 + 8721c3e commit e4e57ad

File tree

8 files changed

+10156
-235
lines changed

8 files changed

+10156
-235
lines changed

.gitignore

Lines changed: 234 additions & 235 deletions
Large diffs are not rendered by default.

modules/unification/Makefile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Adding stb lib for image handling
2+
INCDIR_STB=lib/stb
3+
INCLUDES_STB := $(wildcard $(INCDIR_STB)/*.h)
4+
5+
# Include common Makefile
6+
include ../Makefile
7+
8+
# Include stb lib for compilation
9+
INCLUDES += INCLUDES_STB
10+
11+
12+
# Defining preprocessor directive for using PV model
13+
ifdef IMG_UNIFICATE_PV_EN
14+
CFLAGS += -DIMG_UNIFICATE_PV_EN
15+
LFLAGS += -DIMG_UNIFICATE_PV_EN
16+
endif # UNIFICATE_PV_EN
17+
18+
# Run the compiled file
19+
run:
20+
@./test
21+
22+
# Show waveform
23+
waveform:
24+
@gtkwave UNIFICATE.vcd

modules/unification/include/stb_image.h

Lines changed: 7988 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)