Add TutorialNoCConfig

This commit is contained in:
Jerry Zhao
2022-09-27 22:08:12 -07:00
parent f634fde083
commit 07cad27315
11 changed files with 69 additions and 19 deletions

View File

@@ -4,8 +4,8 @@
#include <inttypes.h>
#include <math.h>
#define FFT_WRITE_LANE 0x2000
#define FFT_RD_LANE_BASE 0x2008
#define FFT_WRITE_LANE 0x2400
#define FFT_RD_LANE_BASE 0x2408
// addr of read lane i is FFT_RD_LANE_BASE + i * 8
// from generators/fft-generator/test_pts.py (in the fft-generator repo)
@@ -68,4 +68,4 @@ int main(void) {
printf("PASS: FFT Test Passed\n");
return 0;
}
}