From cbdb4aa97d2577eea78f4c64a756c32150a83aa0 Mon Sep 17 00:00:00 2001 From: black Date: Thu, 12 Jun 2025 18:17:18 +0300 Subject: [PATCH] added "cpu" and file parser --- emulator/CommandParser.cpp | 5 +++++ emulator/CommandParser.h | 16 ++++++++++++++++ emulator/Manager.cpp | 5 +++++ emulator/Manager.h | 16 ++++++++++++++++ 4 files changed, 42 insertions(+) create mode 100644 emulator/CommandParser.cpp create mode 100644 emulator/CommandParser.h create mode 100644 emulator/Manager.cpp create mode 100644 emulator/Manager.h diff --git a/emulator/CommandParser.cpp b/emulator/CommandParser.cpp new file mode 100644 index 0000000..5795436 --- /dev/null +++ b/emulator/CommandParser.cpp @@ -0,0 +1,5 @@ +// +// Created by black on 12.06.25. +// + +#include "CommandParser.h" diff --git a/emulator/CommandParser.h b/emulator/CommandParser.h new file mode 100644 index 0000000..e2d2f48 --- /dev/null +++ b/emulator/CommandParser.h @@ -0,0 +1,16 @@ +// +// Created by black on 12.06.25. +// + +#ifndef COMMANDPARSER_H +#define COMMANDPARSER_H + + + +class CommandParser { + +}; + + + +#endif //COMMANDPARSER_H diff --git a/emulator/Manager.cpp b/emulator/Manager.cpp new file mode 100644 index 0000000..bb3e795 --- /dev/null +++ b/emulator/Manager.cpp @@ -0,0 +1,5 @@ +// +// Created by black on 12.06.25. +// + +#include "Manager.h" diff --git a/emulator/Manager.h b/emulator/Manager.h new file mode 100644 index 0000000..607a29e --- /dev/null +++ b/emulator/Manager.h @@ -0,0 +1,16 @@ +// +// Created by black on 12.06.25. +// + +#ifndef MANAGER_H +#define MANAGER_H + + + +class Manager { + +}; + + + +#endif //MANAGER_H