summaryrefslogtreecommitdiff
path: root/include/params.h
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-04-03 12:29:48 -0400
committerFreya Murphy <freya@freyacat.org>2025-04-03 12:29:48 -0400
commit33b9d606916f3847e0f754693ca49ce56175a330 (patch)
treeeba26ad7722349ced40270f4a9a8083a58a7d453 /include/params.h
parenttrack changes (diff)
downloadcomus-33b9d606916f3847e0f754693ca49ce56175a330.tar.gz
comus-33b9d606916f3847e0f754693ca49ce56175a330.tar.bz2
comus-33b9d606916f3847e0f754693ca49ce56175a330.zip
refactor include
Diffstat (limited to 'include/params.h')
-rw-r--r--include/params.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/include/params.h b/include/params.h
deleted file mode 100644
index 7a41e02..0000000
--- a/include/params.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/**
-** @file params.h
-**
-** @author CSCI-452 class of 20245
-**
-** @brief System configuration settings
-**
-** This header file contains many of the "easily tunable" system
-** settings, such as clock rate, number of simultaneous user
-** processes, etc. This provides a sort of "one-stop shop" for
-** things that might be tweaked frequently.
-*/
-
-#ifndef PARAMS_H_
-#define PARAMS_H_
-
-/*
-** General (C and/or assembly) definitions
-*/
-
-// Upper bound on the number of simultaneous user-level
-// processes in the system (completely arbitrary)
-#define N_PROCS 25
-
-// Limit on the number of entries in argv[], INCLUDING
-// the trailing NULL pointer (also completely arbitrary)
-#define N_ARGS 10
-
-// Clock frequency (Hz)
-#define CLOCK_FREQ 1000
-#define TICKS_PER_MS 1
-
-#endif