4600-project-1/inc/globals.hpp

7 lines
188 B
C++
Raw Normal View History

2022-04-04 18:39:30 +00:00
#define N 8
// Shared memory through global variables
// Create all of memory
extern block memory[N];
// create the three lists
extern list lists[3];
extern list *freelist, *list1, *list2;