From f8529d09bf1555c2dda61f5841b7ad4f42ce9715 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 17 Apr 2025 13:44:55 -0400 Subject: elf sym loading --- kernel/old/include/params.h | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 kernel/old/include/params.h (limited to 'kernel/old/include/params.h') diff --git a/kernel/old/include/params.h b/kernel/old/include/params.h deleted file mode 100644 index 52eb81d..0000000 --- a/kernel/old/include/params.h +++ /dev/null @@ -1,31 +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 - -// Clock frequency (Hz) - -#define CLOCK_FREQ 1000 -#define TICKS_PER_MS 1 - -#endif -- cgit v1.2.3-freya