diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-05-31 10:12:30 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-05-31 10:12:30 -0600 |
| commit | 6476845b669146d7c4184af9c96081dd2a760ab4 (patch) | |
| tree | 4f5ed867ff86ee1eba88545c5dcf3a988a17b317 /platform/wavelet3d/host_sw/main.c | |
| parent | 4572102cb2401249a640372ac780499ba9b22892 (diff) | |
platform/wavelet3d/host_sw: implement demo
Diffstat (limited to 'platform/wavelet3d/host_sw/main.c')
| -rw-r--r-- | platform/wavelet3d/host_sw/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/wavelet3d/host_sw/main.c b/platform/wavelet3d/host_sw/main.c index 7513c4c..5df035e 100644 --- a/platform/wavelet3d/host_sw/main.c +++ b/platform/wavelet3d/host_sw/main.c @@ -1,7 +1,11 @@ #include "init.h" +#include "vdc.h" int main() { + void demo(void); + demo(); + vdc_init(); init(); return 0; } |
