From 4a0e1d3209cf5efb27b994e59369475dacd398f2 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Tue, 8 Oct 2024 13:20:49 +0200 Subject: [PATCH] added base C file + input template --- simulator.c | 8 ++++++++ tasks.csv | 9 +++++++++ 2 files changed, 17 insertions(+) create mode 100644 simulator.c create mode 100644 tasks.csv diff --git a/simulator.c b/simulator.c new file mode 100644 index 0000000..380dc00 --- /dev/null +++ b/simulator.c @@ -0,0 +1,8 @@ +#define RR_QUANTUM 2 +#define CNTXT_SWITCH 1 + + +int main() { + + return 0; +} \ No newline at end of file diff --git a/tasks.csv b/tasks.csv new file mode 100644 index 0000000..74349b6 --- /dev/null +++ b/tasks.csv @@ -0,0 +1,9 @@ +1 0 10 1 +2 7 100 3 +3 12 10 2 +4 23 100 2 +5 40 1000 3 +6 41 100 3 +7 54 100 2 +8 80 100 2 +9 90 1000 1 \ No newline at end of file