BSD Scheduler implementation #9

Merged
gk1623 merged 12 commits from BSD-merged into master 2024-10-23 16:34:40 +00:00
5 changed files with 26 additions and 275 deletions
Showing only changes of commit f969b02630 - Show all commits

2
.gitignore vendored
View File

@@ -24,3 +24,5 @@
*.nav *.nav
*.toc *.toc
#ignore files from CLion IDE
.idea

View File

@@ -0,0 +1,9 @@
#ifndef FIXED_POINT_H
#define FIXED_POINT_H
/* Fixed Point Arithmetic bit count constants */
#define NUM_INT_BITS 11
#define NUM_FRAC_BITS 20
#define CONVERSION_CONST 1 << NUM_FRAC_BITS /* f = 2^q, (2^20) */
#endif //FIXED_POINT_H